Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / WebRequestModuleElement.cs / 1305376 / 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HtmlInputButton.cs
- DescendantOverDescendantQuery.cs
- EntityDataSourceDataSelection.cs
- AncestorChangedEventArgs.cs
- InputScope.cs
- TextElementAutomationPeer.cs
- ForwardPositionQuery.cs
- EdmMember.cs
- MdiWindowListStrip.cs
- BooleanExpr.cs
- XmlImplementation.cs
- SqlCrossApplyToCrossJoin.cs
- ArgumentNullException.cs
- AnimationTimeline.cs
- CompilerGeneratedAttribute.cs
- ObjectStateFormatter.cs
- SqlMetaData.cs
- HostedImpersonationContext.cs
- WebPartConnectionsDisconnectVerb.cs
- CodeLabeledStatement.cs
- QueryGeneratorBase.cs
- TraceHandlerErrorFormatter.cs
- ConnectionStringsSection.cs
- SHA384CryptoServiceProvider.cs
- KnownTypes.cs
- ServiceObjectContainer.cs
- TextRangeEdit.cs
- XmlIlTypeHelper.cs
- ZipFileInfoCollection.cs
- SyndicationContent.cs
- DictionarySectionHandler.cs
- SelectedDatesCollection.cs
- Control.cs
- IpcClientManager.cs
- ReaderOutput.cs
- QuaternionAnimation.cs
- UntrustedRecipientException.cs
- CultureMapper.cs
- LayoutTableCell.cs
- TextFormatterContext.cs
- XmlComment.cs
- VisualStyleRenderer.cs
- TemplateApplicationHelper.cs
- IndexerNameAttribute.cs
- RegexCaptureCollection.cs
- DocumentProperties.cs
- QilStrConcatenator.cs
- SafeMILHandleMemoryPressure.cs
- TextReader.cs
- BitStack.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- UIElement.cs
- NativeMethods.cs
- SEHException.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- TriState.cs
- DisplayInformation.cs
- TreeNodeBinding.cs
- XmlSchemaComplexType.cs
- EdmComplexPropertyAttribute.cs
- X509Chain.cs
- WebPartVerbCollection.cs
- AttributeUsageAttribute.cs
- FileDialog_Vista_Interop.cs
- CollectionViewGroupRoot.cs
- BuildTopDownAttribute.cs
- _TimerThread.cs
- StorageEntityTypeMapping.cs
- ServiceManagerHandle.cs
- ArgumentValueSerializer.cs
- RuntimeConfigLKG.cs
- UnmanagedHandle.cs
- NativeActivity.cs
- CheckBoxPopupAdapter.cs
- IImplicitResourceProvider.cs
- diagnosticsswitches.cs
- HMACSHA512.cs
- FileLevelControlBuilderAttribute.cs
- DiscoveryClientDocuments.cs
- MailMessage.cs
- PropertyMetadata.cs
- XmlSchemaElement.cs
- RegexCompiler.cs
- ArrayElementGridEntry.cs
- SizeChangedInfo.cs
- FSWPathEditor.cs
- DeploymentSectionCache.cs
- WsdlBuildProvider.cs
- CheckBoxField.cs
- TextureBrush.cs
- EntitySetRetriever.cs
- BasePattern.cs
- Triangle.cs
- ArraySegment.cs
- HttpListener.cs
- XmlSchemaAll.cs
- DataContractSet.cs
- DataTemplate.cs
- safex509handles.cs
- AspNetSynchronizationContext.cs