Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- GACMembershipCondition.cs
- TextContainerChangedEventArgs.cs
- SerialErrors.cs
- BreakRecordTable.cs
- ZipIOBlockManager.cs
- SqlDuplicator.cs
- sqlpipe.cs
- DesigntimeLicenseContextSerializer.cs
- Region.cs
- DecimalConstantAttribute.cs
- OdbcParameterCollection.cs
- UrlRoutingHandler.cs
- Guid.cs
- GlyphInfoList.cs
- DataServiceKeyAttribute.cs
- CharAnimationUsingKeyFrames.cs
- DocumentNUp.cs
- DefaultEventAttribute.cs
- URI.cs
- DataObjectEventArgs.cs
- CharAnimationUsingKeyFrames.cs
- StorageModelBuildProvider.cs
- NamedPipeConnectionPoolSettingsElement.cs
- RSAProtectedConfigurationProvider.cs
- ExtendedProtectionPolicy.cs
- filewebrequest.cs
- PersonalizableAttribute.cs
- ProfileSettingsCollection.cs
- DataGridViewDataConnection.cs
- FontStyles.cs
- HiddenFieldDesigner.cs
- TemplateField.cs
- XPathAncestorQuery.cs
- QueueProcessor.cs
- FrameDimension.cs
- GenericWebPart.cs
- PageEventArgs.cs
- XPathPatternBuilder.cs
- ErrorFormatter.cs
- EmptyQuery.cs
- BinaryExpressionHelper.cs
- KnownAssemblyEntry.cs
- DataGridPagerStyle.cs
- SqlUdtInfo.cs
- RadialGradientBrush.cs
- MasterPageCodeDomTreeGenerator.cs
- DocumentPageView.cs
- DateTimeFormatInfoScanner.cs
- LogAppendAsyncResult.cs
- MobileControlsSectionHelper.cs
- HtmlShimManager.cs
- DataMemberFieldConverter.cs
- StringStorage.cs
- ItemAutomationPeer.cs
- StringFunctions.cs
- QilBinary.cs
- TimelineGroup.cs
- RemoteWebConfigurationHostStream.cs
- WebPartManagerInternals.cs
- MouseWheelEventArgs.cs
- ObjectDataProvider.cs
- SafeBitVector32.cs
- DockAndAnchorLayout.cs
- QueryCursorEventArgs.cs
- DesignSurfaceCollection.cs
- ToolStripRenderEventArgs.cs
- xmlfixedPageInfo.cs
- UpdateTranslator.cs
- odbcmetadatafactory.cs
- CorrelationTokenInvalidatedHandler.cs
- FileVersion.cs
- ContainsRowNumberChecker.cs
- ConfigXmlAttribute.cs
- HotSpotCollection.cs
- OrderedParallelQuery.cs
- SecureEnvironment.cs
- PtsHelper.cs
- ArrangedElementCollection.cs
- DataAccessor.cs
- StringFunctions.cs
- ResourceContainerWrapper.cs
- RequestDescription.cs
- Types.cs
- ThicknessAnimationBase.cs
- EnumerableRowCollection.cs
- EditingCoordinator.cs
- InkCanvas.cs
- MethodRental.cs
- assertwrapper.cs
- DependencyObjectPropertyDescriptor.cs
- ByeMessageCD1.cs
- BulletedListDesigner.cs
- FormViewActionList.cs
- ScaleTransform.cs
- EventLogWatcher.cs
- WebBrowserNavigatedEventHandler.cs
- PersianCalendar.cs
- EdmToObjectNamespaceMap.cs
- WindowsFormsHelpers.cs
- AutomationPeer.cs