Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Serialization / Configuration / SchemaImporterExtensionElement.cs / 1 / 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. //------------------------------------------------------------------------------ //// 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
- SqlEnums.cs
- TablePatternIdentifiers.cs
- TableAdapterManagerGenerator.cs
- InteropTrackingRecord.cs
- TCPListener.cs
- ReadingWritingEntityEventArgs.cs
- TopClause.cs
- XsdBuildProvider.cs
- XhtmlCssHandler.cs
- ImageMapEventArgs.cs
- LogicalTreeHelper.cs
- ColumnResult.cs
- ManualResetEventSlim.cs
- DoubleKeyFrameCollection.cs
- WebPartAuthorizationEventArgs.cs
- ImageCollectionEditor.cs
- ClientRuntimeConfig.cs
- BamlBinaryWriter.cs
- TreeNodeBindingCollection.cs
- ASCIIEncoding.cs
- CompositeFontParser.cs
- PathSegmentCollection.cs
- TaiwanCalendar.cs
- updatecommandorderer.cs
- MemoryFailPoint.cs
- BrowserCapabilitiesFactoryBase.cs
- odbcmetadatacollectionnames.cs
- GetReadStreamResult.cs
- Int64Animation.cs
- WeakEventTable.cs
- FilterableData.cs
- SQLChars.cs
- ArgIterator.cs
- ErrorStyle.cs
- Span.cs
- ServiceDurableInstanceContextProvider.cs
- StylusEditingBehavior.cs
- CollectionDataContract.cs
- BitmapImage.cs
- StateDesigner.LayoutSelectionGlyph.cs
- HttpAsyncResult.cs
- RoleGroupCollection.cs
- UnsafeNativeMethods.cs
- EnumValAlphaComparer.cs
- ListViewCancelEventArgs.cs
- DbQueryCommandTree.cs
- OpCopier.cs
- HtmlMeta.cs
- ScriptResourceHandler.cs
- InfoCardBaseException.cs
- PixelShader.cs
- SoapAttributeOverrides.cs
- EncryptedKeyIdentifierClause.cs
- TextTreeRootTextBlock.cs
- DbConnectionStringBuilder.cs
- CompositeActivityDesigner.cs
- ContainerTracking.cs
- QueryableFilterRepeater.cs
- ResourceProviderFactory.cs
- SqlNodeTypeOperators.cs
- ServiceChannelProxy.cs
- StateRuntime.cs
- storepermissionattribute.cs
- ColorPalette.cs
- RowsCopiedEventArgs.cs
- DataServiceHostFactory.cs
- FragmentNavigationEventArgs.cs
- XmlReader.cs
- ToolboxItemFilterAttribute.cs
- dbenumerator.cs
- CmsUtils.cs
- XmlName.cs
- PersistStreamTypeWrapper.cs
- cookiecontainer.cs
- HtmlTableRow.cs
- RootContext.cs
- Wizard.cs
- TableHeaderCell.cs
- SemanticValue.cs
- PropertyTab.cs
- PropertyGroupDescription.cs
- CommandPlan.cs
- ObjectConverter.cs
- NumberSubstitution.cs
- WindowsGrip.cs
- MessageQueueKey.cs
- StateFinalizationActivity.cs
- PropertyCondition.cs
- VoiceInfo.cs
- Symbol.cs
- HideDisabledControlAdapter.cs
- XmlUTF8TextReader.cs
- Line.cs
- TreeNodeEventArgs.cs
- EndpointDiscoveryElement.cs
- ContextMenu.cs
- codemethodreferenceexpression.cs
- ItemChangedEventArgs.cs
- DelegatingChannelListener.cs
- Exception.cs