Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Configuration / WebRequestModuleElement.cs / 1 / WebRequestModuleElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.ComponentModel; using System.Globalization; using System.Reflection; using System.Security.Permissions; public sealed class WebRequestModuleElement : ConfigurationElement { public WebRequestModuleElement() { this.properties.Add(this.prefix); this.properties.Add(this.type); } public WebRequestModuleElement(string prefix, string type) : this() { this.Prefix = prefix; this[this.type] = new TypeAndName(type); } public WebRequestModuleElement(string prefix, Type type) : this() { this.Prefix = prefix; this.Type = type; } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.Prefix, IsRequired=true, IsKey = true)] public string Prefix { get { return (string)this[this.prefix]; } set { this[this.prefix] = value; } } [ConfigurationProperty(ConfigurationStrings.Type)] [TypeConverter(typeof(TypeTypeConverter))] public Type Type { get { TypeAndName typeName = (TypeAndName)this[this.type]; if (typeName != null) { return typeName.type; } else { return null; } } set { this[this.type] = new TypeAndName(value); } } internal string Key { get { return this.Prefix; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty prefix = new ConfigurationProperty(ConfigurationStrings.Prefix, typeof(string), null, ConfigurationPropertyOptions.IsKey); readonly ConfigurationProperty type = new ConfigurationProperty(ConfigurationStrings.Type, typeof(TypeAndName), null, new TypeTypeConverter(), null, ConfigurationPropertyOptions.None); 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.Net.Configuration { using System; using System.Configuration; using System.ComponentModel; using System.Globalization; using System.Reflection; using System.Security.Permissions; public sealed class WebRequestModuleElement : ConfigurationElement { public WebRequestModuleElement() { this.properties.Add(this.prefix); this.properties.Add(this.type); } public WebRequestModuleElement(string prefix, string type) : this() { this.Prefix = prefix; this[this.type] = new TypeAndName(type); } public WebRequestModuleElement(string prefix, Type type) : this() { this.Prefix = prefix; this.Type = type; } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.Prefix, IsRequired=true, IsKey = true)] public string Prefix { get { return (string)this[this.prefix]; } set { this[this.prefix] = value; } } [ConfigurationProperty(ConfigurationStrings.Type)] [TypeConverter(typeof(TypeTypeConverter))] public Type Type { get { TypeAndName typeName = (TypeAndName)this[this.type]; if (typeName != null) { return typeName.type; } else { return null; } } set { this[this.type] = new TypeAndName(value); } } internal string Key { get { return this.Prefix; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty prefix = new ConfigurationProperty(ConfigurationStrings.Prefix, typeof(string), null, ConfigurationPropertyOptions.IsKey); readonly ConfigurationProperty type = new ConfigurationProperty(ConfigurationStrings.Type, typeof(TypeAndName), null, new TypeTypeConverter(), null, ConfigurationPropertyOptions.None); 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
- IPEndPoint.cs
- Maps.cs
- CompilerError.cs
- LineGeometry.cs
- MatrixStack.cs
- TextEncodedRawTextWriter.cs
- Vector3DValueSerializer.cs
- HintTextConverter.cs
- XmlValidatingReaderImpl.cs
- ApplicationManager.cs
- COM2ExtendedBrowsingHandler.cs
- CodeObjectCreateExpression.cs
- RightsManagementEncryptionTransform.cs
- PropertyMetadata.cs
- CompilerGeneratedAttribute.cs
- WorkflowMessageEventArgs.cs
- ControlValuePropertyAttribute.cs
- ProxyHwnd.cs
- SharedStatics.cs
- StagingAreaInputItem.cs
- ProfileGroupSettingsCollection.cs
- Wrapper.cs
- OracleString.cs
- DBSchemaRow.cs
- MaskedTextProvider.cs
- InputReportEventArgs.cs
- FindCriteria.cs
- NamedPermissionSet.cs
- SaveFileDialog.cs
- LinkLabel.cs
- XmlnsPrefixAttribute.cs
- DataGridHyperlinkColumn.cs
- UntrustedRecipientException.cs
- XamlSerializerUtil.cs
- Model3DGroup.cs
- Point4DConverter.cs
- WebEventTraceProvider.cs
- PolyBezierSegment.cs
- WorkItem.cs
- XmlChildEnumerator.cs
- SqlCacheDependencyDatabase.cs
- XhtmlCssHandler.cs
- PerformanceCounterLib.cs
- safemediahandle.cs
- WSSecurityPolicy.cs
- CompiledRegexRunnerFactory.cs
- IgnoreSectionHandler.cs
- AdornerPresentationContext.cs
- XmlStreamStore.cs
- InteropEnvironment.cs
- TextServicesCompartmentEventSink.cs
- DeclarativeCatalogPart.cs
- BooleanSwitch.cs
- MarshalByValueComponent.cs
- EntityDesignerDataSourceView.cs
- OdbcConnectionPoolProviderInfo.cs
- _ContextAwareResult.cs
- IndexerNameAttribute.cs
- WebControlParameterProxy.cs
- MasterPageBuildProvider.cs
- TypeSystem.cs
- AxisAngleRotation3D.cs
- DataSourceComponent.cs
- ConnectionManagementElementCollection.cs
- RegexCharClass.cs
- DebuggerAttributes.cs
- X509CertificateRecipientServiceCredential.cs
- QilIterator.cs
- filewebresponse.cs
- EventPrivateKey.cs
- DataGridViewRowStateChangedEventArgs.cs
- DetailsViewUpdatedEventArgs.cs
- XmlNamedNodeMap.cs
- ModelVisual3D.cs
- WsrmTraceRecord.cs
- X509CertificateStore.cs
- AppModelKnownContentFactory.cs
- SqlBulkCopy.cs
- WpfKnownTypeInvoker.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- Polygon.cs
- ConfigurationException.cs
- FontFamilyIdentifier.cs
- ScrollItemPattern.cs
- ConfigurationManagerHelper.cs
- RtfToXamlLexer.cs
- _ListenerResponseStream.cs
- HttpWriter.cs
- IOThreadTimer.cs
- RegexWorker.cs
- DynamicDiscoSearcher.cs
- DeferredReference.cs
- XamlVector3DCollectionSerializer.cs
- FilteredXmlReader.cs
- CheckBoxStandardAdapter.cs
- WebPartZoneDesigner.cs
- ResourceProviderFactory.cs
- CheckStoreFileValidityRequest.cs
- ScopeElementCollection.cs
- EdmItemCollection.OcAssemblyCache.cs