Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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);
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UpDownBase.cs
- RegexGroupCollection.cs
- DrawingContextWalker.cs
- IPGlobalProperties.cs
- OciHandle.cs
- graph.cs
- PropertyDescriptorCollection.cs
- XslAst.cs
- Table.cs
- PrinterSettings.cs
- ArrayConverter.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- CodeAccessSecurityEngine.cs
- IndentTextWriter.cs
- HttpConfigurationSystem.cs
- InvokeWebService.cs
- GridViewHeaderRowPresenter.cs
- SqlFunctions.cs
- PenLineCapValidation.cs
- CompilerTypeWithParams.cs
- DocumentGridPage.cs
- LayoutUtils.cs
- RoleManagerSection.cs
- BitSet.cs
- RenderingEventArgs.cs
- FixedBufferAttribute.cs
- TypeUtils.cs
- SelectionListComponentEditor.cs
- EventRouteFactory.cs
- ColumnBinding.cs
- NameObjectCollectionBase.cs
- SoapSchemaMember.cs
- NetworkInformationException.cs
- X509Certificate.cs
- TabItemWrapperAutomationPeer.cs
- Deserializer.cs
- List.cs
- Window.cs
- SByteStorage.cs
- FileStream.cs
- DesignColumnCollection.cs
- ToolStripItemImageRenderEventArgs.cs
- ReferentialConstraintRoleElement.cs
- XmlSchemaImporter.cs
- BaseCodeDomTreeGenerator.cs
- WorkflowOperationFault.cs
- wgx_exports.cs
- GeneralTransformCollection.cs
- CapabilitiesSection.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- CursorConverter.cs
- HttpHandlerAction.cs
- RenderOptions.cs
- EastAsianLunisolarCalendar.cs
- TargetParameterCountException.cs
- Translator.cs
- __Error.cs
- Crc32.cs
- XmlText.cs
- ServiceConfigurationTraceRecord.cs
- ComEventsSink.cs
- RoleManagerSection.cs
- DataGridViewColumnEventArgs.cs
- BaseTemplatedMobileComponentEditor.cs
- CatalogZone.cs
- XmlDataSource.cs
- RoutedEventConverter.cs
- BooleanFacetDescriptionElement.cs
- DbConnectionStringBuilder.cs
- SurrogateDataContract.cs
- TextServicesLoader.cs
- ContentValidator.cs
- ValueType.cs
- Shared.cs
- VirtualPathProvider.cs
- WebPartManager.cs
- CommandDevice.cs
- NumericPagerField.cs
- GcHandle.cs
- ExeConfigurationFileMap.cs
- SortQuery.cs
- PreviewControlDesigner.cs
- DataRowExtensions.cs
- CoTaskMemSafeHandle.cs
- UnsafeNativeMethods.cs
- FixedTextBuilder.cs
- Menu.cs
- Form.cs
- BrushMappingModeValidation.cs
- RetriableClipboard.cs
- DataGridViewTopRowAccessibleObject.cs
- CustomValidator.cs
- DbDeleteCommandTree.cs
- activationcontext.cs
- IdentityReference.cs
- SQLStringStorage.cs
- WebPartConnectionsEventArgs.cs
- CompositeFontInfo.cs
- StrongNameKeyPair.cs
- LinkDescriptor.cs