Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / Configuration / SchemaImporterExtensionElement.cs / 1305376 / SchemaImporterExtensionElement.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Serialization.Configuration
{
using System;
using System.Configuration;
using System.ComponentModel;
using System.Globalization;
using System.Reflection;
using System.Security.Permissions;
public sealed class SchemaImporterExtensionElement : ConfigurationElement
{
public SchemaImporterExtensionElement()
{
this.properties.Add(this.name);
this.properties.Add(this.type);
}
public SchemaImporterExtensionElement(string name, string type) : this()
{
this.Name = name;
this[this.type] = new TypeAndName(type);
}
public SchemaImporterExtensionElement(string name, Type type) : this()
{
this.Name = name;
this.Type = type;
}
[ConfigurationProperty(ConfigurationStrings.Name, IsRequired=true, IsKey = true)]
public string Name
{
get { return (string)this[this.name]; }
set { this[this.name] = value; }
}
protected override ConfigurationPropertyCollection Properties
{
get
{
return this.properties;
}
}
[ConfigurationProperty(ConfigurationStrings.Type, IsRequired=true, IsKey = false)]
[TypeConverter(typeof(TypeTypeConverter))]
public Type Type
{
get { return ((TypeAndName) this[this.type]).type; }
set { this[this.type] = new TypeAndName(value); }
}
internal string Key
{
get { return this.Name; }
}
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
readonly ConfigurationProperty name =
new ConfigurationProperty(ConfigurationStrings.Name, typeof(string), null,
ConfigurationPropertyOptions.IsKey);
readonly ConfigurationProperty type =
new ConfigurationProperty(ConfigurationStrings.Type, typeof(Type), null,
new TypeTypeConverter(), null, ConfigurationPropertyOptions.IsRequired);
class TypeAndName
{
public TypeAndName(string name)
{
this.type = Type.GetType(name, true, true);
this.name = name;
}
public TypeAndName(Type type)
{
this.type = type;
}
public override int GetHashCode()
{
return type.GetHashCode();
}
public override bool Equals(object comparand)
{
return type.Equals(((TypeAndName) comparand).type);
}
public readonly Type type;
public readonly string name;
}
class TypeTypeConverter : TypeConverter {
public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) {
if (sourceType == typeof(string)) {
return true;
}
return base.CanConvertFrom(context, sourceType);
}
public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) {
if (value is string) {
return new TypeAndName((string) value);
}
return base.ConvertFrom(context, culture, value);
}
public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) {
if (destinationType == typeof(string)) {
TypeAndName castedValue = (TypeAndName) value;
return castedValue.name == null ? castedValue.type.AssemblyQualifiedName : castedValue.name;
}
return base.ConvertTo(context, culture, value, destinationType);
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NoPersistScope.cs
- PointLight.cs
- SystemIPInterfaceStatistics.cs
- BuildManagerHost.cs
- TimeoutException.cs
- OleDbDataReader.cs
- HwndMouseInputProvider.cs
- IncrementalHitTester.cs
- SamlAttributeStatement.cs
- CustomAttributeFormatException.cs
- GridViewColumnCollection.cs
- XmlSiteMapProvider.cs
- ThicknessAnimationBase.cs
- SpecialFolderEnumConverter.cs
- SqlDataSourceQueryConverter.cs
- DataGridViewCellValidatingEventArgs.cs
- ServiceProviders.cs
- FamilyTypefaceCollection.cs
- ClockController.cs
- PolicyManager.cs
- XmlSignificantWhitespace.cs
- EdmProperty.cs
- DataContract.cs
- Missing.cs
- WorkflowMarkupSerializationProvider.cs
- RuleAttributes.cs
- DocumentPropertiesDialog.cs
- DecoderFallbackWithFailureFlag.cs
- RangeContentEnumerator.cs
- WebResourceAttribute.cs
- BaseHashHelper.cs
- OrderedEnumerableRowCollection.cs
- _LocalDataStoreMgr.cs
- HeaderCollection.cs
- XmlException.cs
- CodeConstructor.cs
- ChainOfResponsibility.cs
- ProfileBuildProvider.cs
- OrderByBuilder.cs
- SessionStateContainer.cs
- TCPClient.cs
- JoinCqlBlock.cs
- UserUseLicenseDictionaryLoader.cs
- RichTextBox.cs
- RoutingService.cs
- Model3DGroup.cs
- Substitution.cs
- EditorPartChrome.cs
- WhitespaceRule.cs
- QuotedPrintableStream.cs
- HttpListener.cs
- SecurityTokenAuthenticator.cs
- PointCollection.cs
- WpfSharedBamlSchemaContext.cs
- EditorAttribute.cs
- AssertSection.cs
- ApplyTemplatesAction.cs
- HWStack.cs
- XsdBuilder.cs
- ComContractElementCollection.cs
- ErrorLog.cs
- ToolBarButton.cs
- XPathChildIterator.cs
- InfoCardRSAPKCS1SignatureDeformatter.cs
- BufferCache.cs
- ControlParameter.cs
- AssemblyInfo.cs
- Trace.cs
- SelectionEditingBehavior.cs
- DeploymentSectionCache.cs
- Rights.cs
- CryptoApi.cs
- SecurityUtils.cs
- ErrorBehavior.cs
- baseaxisquery.cs
- WpfWebRequestHelper.cs
- webproxy.cs
- StringConcat.cs
- TextDecoration.cs
- SubMenuStyleCollection.cs
- OdbcStatementHandle.cs
- StringUtil.cs
- Margins.cs
- AddInAdapter.cs
- CompletionBookmark.cs
- SettingsSavedEventArgs.cs
- FileChangesMonitor.cs
- SrgsRulesCollection.cs
- PointCollectionValueSerializer.cs
- Accessible.cs
- QueryOperatorEnumerator.cs
- ProvidePropertyAttribute.cs
- MenuTracker.cs
- FontUnit.cs
- PointCollectionValueSerializer.cs
- FormsAuthentication.cs
- mediapermission.cs
- MaterialGroup.cs
- SqlParameterCollection.cs
- TripleDESCryptoServiceProvider.cs