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
- NamedElement.cs
- OdbcException.cs
- StackSpiller.Generated.cs
- GeneralTransform3DGroup.cs
- CommonProperties.cs
- HandlerFactoryCache.cs
- WebServiceTypeData.cs
- DoubleLink.cs
- TypeSemantics.cs
- PopOutPanel.cs
- AttributeData.cs
- ChannelDispatcherCollection.cs
- BitHelper.cs
- SystemIPInterfaceProperties.cs
- InboundActivityHelper.cs
- TransformerInfoCollection.cs
- Command.cs
- Transform3D.cs
- CompatibleComparer.cs
- CorrelationKeyCalculator.cs
- TraceHwndHost.cs
- ItemChangedEventArgs.cs
- RegisteredHiddenField.cs
- ToolboxItemImageConverter.cs
- WmfPlaceableFileHeader.cs
- BaseTemplateParser.cs
- DynamicAttribute.cs
- ReferenceEqualityComparer.cs
- ExpressionBinding.cs
- XmlSiteMapProvider.cs
- QilInvokeLateBound.cs
- ToolStripProgressBar.cs
- OleDbParameterCollection.cs
- Mappings.cs
- StringSorter.cs
- ObjectListItemCollection.cs
- TcpActivation.cs
- ClientTarget.cs
- Parameter.cs
- ClientTargetCollection.cs
- sitestring.cs
- SpanIndex.cs
- EndEvent.cs
- _ContextAwareResult.cs
- CssTextWriter.cs
- QueryCursorEventArgs.cs
- FixedSOMImage.cs
- TerminatorSinks.cs
- XmlAttributeProperties.cs
- DBConnection.cs
- CheckBoxPopupAdapter.cs
- HttpRequestCacheValidator.cs
- DynamicQueryableWrapper.cs
- CodeExpressionStatement.cs
- CodeRemoveEventStatement.cs
- ListViewCommandEventArgs.cs
- Tuple.cs
- ProcessHostConfigUtils.cs
- WebRequestModulesSection.cs
- DoubleCollectionConverter.cs
- dataobject.cs
- ComplexObject.cs
- WebPartActionVerb.cs
- TypeElement.cs
- TdsParserHelperClasses.cs
- BufferedWebEventProvider.cs
- SchemaDeclBase.cs
- EventProxy.cs
- ImageDrawing.cs
- ValueCollectionParameterReader.cs
- DesignTimeData.cs
- WithParamAction.cs
- LineGeometry.cs
- BinaryCommonClasses.cs
- SqlSupersetValidator.cs
- FixedSOMPageElement.cs
- WindowsEditBox.cs
- MILUtilities.cs
- ToolStripDropTargetManager.cs
- TextPenaltyModule.cs
- EntityDataSourceWrapper.cs
- QueryContext.cs
- PlanCompilerUtil.cs
- AssertFilter.cs
- PresentationAppDomainManager.cs
- WSFederationHttpSecurityElement.cs
- ForEachDesigner.xaml.cs
- SortExpressionBuilder.cs
- ByteAnimationBase.cs
- DnsPermission.cs
- DataGridViewSortCompareEventArgs.cs
- Stylus.cs
- CachedResourceDictionaryExtension.cs
- ObjectDataSourceFilteringEventArgs.cs
- XmlSchemaAny.cs
- CrossSiteScriptingValidation.cs
- TextSpanModifier.cs
- OperationDescription.cs
- TrailingSpaceComparer.cs
- WebMessageFormatHelper.cs