Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Configuration / TypeElement.cs / 1305376 / TypeElement.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.Web.Services.Configuration { using System; using System.Configuration; using System.ComponentModel; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; public sealed class TypeElement : ConfigurationElement { // These three constructors are used by the configuration system. public TypeElement() : base() { this.properties.Add(this.type); } public TypeElement(string type) : this() { base[this.type] = new TypeAndName(type); } public TypeElement(Type type) : this(type.AssemblyQualifiedName) { } [ConfigurationProperty("type", IsKey = true)] [TypeConverter(typeof(TypeAndNameConverter))] public Type Type { get { return ((TypeAndName)base[this.type]).type; } set { if (value == null) { throw new ArgumentNullException("value"); } base[this.type] = new TypeAndName(value); } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty type = new ConfigurationProperty("type", typeof(TypeAndName), null, new TypeAndNameConverter(), null, ConfigurationPropertyOptions.IsKey); } 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 TypeAndNameConverter : 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.Web.Services.Configuration { using System; using System.Configuration; using System.ComponentModel; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.Security.Permissions; public sealed class TypeElement : ConfigurationElement { // These three constructors are used by the configuration system. public TypeElement() : base() { this.properties.Add(this.type); } public TypeElement(string type) : this() { base[this.type] = new TypeAndName(type); } public TypeElement(Type type) : this(type.AssemblyQualifiedName) { } [ConfigurationProperty("type", IsKey = true)] [TypeConverter(typeof(TypeAndNameConverter))] public Type Type { get { return ((TypeAndName)base[this.type]).type; } set { if (value == null) { throw new ArgumentNullException("value"); } base[this.type] = new TypeAndName(value); } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty type = new ConfigurationProperty("type", typeof(TypeAndName), null, new TypeAndNameConverter(), null, ConfigurationPropertyOptions.IsKey); } 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 TypeAndNameConverter : 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
- PerformanceCounterPermission.cs
- HttpInputStream.cs
- WebEventTraceProvider.cs
- AudioStateChangedEventArgs.cs
- DbParameterHelper.cs
- WebRequestModulesSection.cs
- BindingExpressionUncommonField.cs
- OracleCommand.cs
- HtmlWindowCollection.cs
- PeerDuplexChannel.cs
- FixedSOMContainer.cs
- Expression.cs
- EncodingNLS.cs
- FormParameter.cs
- WebServiceTypeData.cs
- BooleanSwitch.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- ClientSponsor.cs
- TrustLevel.cs
- DefaultHttpHandler.cs
- ListenerBinder.cs
- ErrorRuntimeConfig.cs
- Bezier.cs
- SQLGuidStorage.cs
- __ConsoleStream.cs
- HtmlSelectionListAdapter.cs
- ObsoleteAttribute.cs
- TimeEnumHelper.cs
- ChannelServices.cs
- StrokeDescriptor.cs
- TableDetailsCollection.cs
- InkCanvasFeedbackAdorner.cs
- DateRangeEvent.cs
- ZipPackage.cs
- LinqDataSourceContextData.cs
- RelationshipWrapper.cs
- ProtocolsSection.cs
- SqlParameterCollection.cs
- XMLSyntaxException.cs
- DataGridItemEventArgs.cs
- DataGridRelationshipRow.cs
- ThreadStateException.cs
- VisualBrush.cs
- EncryptedKeyIdentifierClause.cs
- InvalidAsynchronousStateException.cs
- Path.cs
- DispatcherEventArgs.cs
- GestureRecognitionResult.cs
- ResXResourceReader.cs
- VScrollBar.cs
- XmlSchemas.cs
- X500Name.cs
- ActivityExecutionFilter.cs
- PrimaryKeyTypeConverter.cs
- BaseDataList.cs
- XmlNamedNodeMap.cs
- XamlVector3DCollectionSerializer.cs
- Activation.cs
- UInt16.cs
- DecoderBestFitFallback.cs
- DrawTreeNodeEventArgs.cs
- Axis.cs
- GenericRootAutomationPeer.cs
- LicFileLicenseProvider.cs
- RMPublishingDialog.cs
- LostFocusEventManager.cs
- TemplateBamlRecordReader.cs
- CommonProperties.cs
- DocumentSchemaValidator.cs
- XmlBinaryReaderSession.cs
- _BufferOffsetSize.cs
- FusionWrap.cs
- ParentUndoUnit.cs
- DataObjectPastingEventArgs.cs
- SecurityRuntime.cs
- CounterSetInstance.cs
- PathTooLongException.cs
- ClientBuildManager.cs
- SignatureGenerator.cs
- ResXResourceReader.cs
- XhtmlTextWriter.cs
- Queue.cs
- HGlobalSafeHandle.cs
- SingleStorage.cs
- TimeSpanStorage.cs
- BorderGapMaskConverter.cs
- MergablePropertyAttribute.cs
- ExplicitDiscriminatorMap.cs
- InputReportEventArgs.cs
- ViewStateChangedEventArgs.cs
- XmlUrlEditor.cs
- DesignSurfaceServiceContainer.cs
- ConnectionProviderAttribute.cs
- WorkItem.cs
- PocoPropertyAccessorStrategy.cs
- VisualBrush.cs
- LoginNameDesigner.cs
- DataServiceProviderMethods.cs
- TextSpan.cs
- UnsafeNativeMethods.cs