Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Serialization / Configuration / SchemaImporterExtensionElement.cs / 2 / SchemaImporterExtensionElement.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml.Serialization.Configuration
{
using System;
using System.Configuration;
using System.ComponentModel;
using System.Globalization;
using System.Reflection;
using System.Security.Permissions;
public sealed class SchemaImporterExtensionElement : ConfigurationElement
{
public SchemaImporterExtensionElement()
{
this.properties.Add(this.name);
this.properties.Add(this.type);
}
public SchemaImporterExtensionElement(string name, string type) : this()
{
this.Name = name;
this[this.type] = new TypeAndName(type);
}
public SchemaImporterExtensionElement(string name, Type type) : this()
{
this.Name = name;
this.Type = type;
}
[ConfigurationProperty(ConfigurationStrings.Name, IsRequired=true, IsKey = true)]
public string Name
{
get { return (string)this[this.name]; }
set { this[this.name] = value; }
}
protected override ConfigurationPropertyCollection Properties
{
get
{
return this.properties;
}
}
[ConfigurationProperty(ConfigurationStrings.Type, IsRequired=true, IsKey = false)]
[TypeConverter(typeof(TypeTypeConverter))]
public Type Type
{
get { return ((TypeAndName) this[this.type]).type; }
set { this[this.type] = new TypeAndName(value); }
}
internal string Key
{
get { return this.Name; }
}
ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection();
readonly ConfigurationProperty name =
new ConfigurationProperty(ConfigurationStrings.Name, typeof(string), null,
ConfigurationPropertyOptions.IsKey);
readonly ConfigurationProperty type =
new ConfigurationProperty(ConfigurationStrings.Type, typeof(Type), null,
new TypeTypeConverter(), null, ConfigurationPropertyOptions.IsRequired);
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TemplateBuilder.cs
- XmlDesignerDataSourceView.cs
- RadioButton.cs
- PropertyToken.cs
- Serializer.cs
- CharAnimationUsingKeyFrames.cs
- DataView.cs
- SqlRowUpdatingEvent.cs
- ListViewTableCell.cs
- StyleSheetRefUrlEditor.cs
- ReadOnlyNameValueCollection.cs
- FormsIdentity.cs
- ButtonFlatAdapter.cs
- Model3DCollection.cs
- PageThemeBuildProvider.cs
- UnlockCardRequest.cs
- WebPartVerbCollection.cs
- NetworkInformationException.cs
- XmlToDatasetMap.cs
- FaultFormatter.cs
- TimelineCollection.cs
- UnsafeNativeMethods.cs
- PrintingPermission.cs
- ReflectionServiceProvider.cs
- TokenFactoryBase.cs
- DataFormat.cs
- StackSpiller.Bindings.cs
- XmlElementAttribute.cs
- AdornerHitTestResult.cs
- XmlLoader.cs
- AnnotationComponentManager.cs
- HashJoinQueryOperatorEnumerator.cs
- CapabilitiesState.cs
- BoundingRectTracker.cs
- FormViewDeleteEventArgs.cs
- CrossAppDomainChannel.cs
- WindowsAuthenticationModule.cs
- ILGen.cs
- InputScopeNameConverter.cs
- ExceptionRoutedEventArgs.cs
- OletxResourceManager.cs
- WizardForm.cs
- BaseResourcesBuildProvider.cs
- StylusCaptureWithinProperty.cs
- SqlDataSourceCustomCommandPanel.cs
- FormViewModeEventArgs.cs
- WebControlParameterProxy.cs
- DataGridColumnHeaderCollection.cs
- Int32RectValueSerializer.cs
- HelpInfo.cs
- ChannelSinkStacks.cs
- LockRenewalTask.cs
- CodePageEncoding.cs
- BitmapCodecInfo.cs
- exports.cs
- EntityEntry.cs
- VideoDrawing.cs
- UnsafeNativeMethods.cs
- SequentialWorkflowRootDesigner.cs
- HandlerBase.cs
- SafeSecurityHandles.cs
- RelatedImageListAttribute.cs
- DesignerAdapterUtil.cs
- WeakEventTable.cs
- NavigationProgressEventArgs.cs
- TransformDescriptor.cs
- ServiceDescriptionSerializer.cs
- PersonalizableTypeEntry.cs
- FaultCode.cs
- WorkflowFileItem.cs
- DependencyPropertyHelper.cs
- Journal.cs
- Vector.cs
- SchemeSettingElement.cs
- CheckBoxPopupAdapter.cs
- BoundColumn.cs
- EnumUnknown.cs
- assemblycache.cs
- ObjectParameter.cs
- Monitor.cs
- EmptyStringExpandableObjectConverter.cs
- PageWrapper.cs
- SymmetricAlgorithm.cs
- PageRequestManager.cs
- DNS.cs
- FlowLayoutSettings.cs
- WindowPatternIdentifiers.cs
- oledbconnectionstring.cs
- FlowDocumentFormatter.cs
- ResourceWriter.cs
- DescendantBaseQuery.cs
- SqlInternalConnectionTds.cs
- ClaimTypeRequirement.cs
- NamespaceDecl.cs
- Documentation.cs
- ComponentChangingEvent.cs
- SubMenuStyleCollection.cs
- UnSafeCharBuffer.cs
- ProfileSettings.cs
- PropertyItemInternal.cs