Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / Diagnostics / SwitchElementsCollection.cs / 1 / SwitchElementsCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Configuration; using System.Collections; using System.Collections.Specialized; namespace System.Diagnostics { [ConfigurationCollection(typeof(SwitchElement))] internal class SwitchElementsCollection : ConfigurationElementCollection { new public SwitchElement this[string name] { get { return (SwitchElement) BaseGet(name); } } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.AddRemoveClearMap; } } protected override ConfigurationElement CreateNewElement() { return new SwitchElement(); } protected override Object GetElementKey(ConfigurationElement element) { return ((SwitchElement) element).Name; } } internal class SwitchElement : ConfigurationElement { private static readonly ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propName = new ConfigurationProperty("name", typeof(string), "", ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propValue = new ConfigurationProperty("value", typeof(string), null, ConfigurationPropertyOptions.IsRequired); private Hashtable _attributes; static SwitchElement(){ _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propValue); } public Hashtable Attributes { get { if (_attributes == null) _attributes = new Hashtable(StringComparer.OrdinalIgnoreCase); return _attributes; } } [ConfigurationProperty("name", DefaultValue = "", IsRequired = true, IsKey = true)] public string Name { get { return (string) this[_propName]; } } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("value", IsRequired = true)] public string Value { get { return (string) this[_propValue]; } } protected override bool OnDeserializeUnrecognizedAttribute(String name, String value) { ConfigurationProperty _propDynamic = new ConfigurationProperty(name, typeof(string), value); _properties.Add(_propDynamic); base[_propDynamic] = value; // Add them to the property bag Attributes.Add(name, value); return true; } internal void ResetProperties() { // blow away any UnrecognizedAttributes that we have deserialized earlier if (_attributes != null) { _attributes.Clear(); _properties.Clear(); _properties.Add(_propName); _properties.Add(_propValue); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PeerUnsafeNativeCryptMethods.cs
- NameValueConfigurationCollection.cs
- StackOverflowException.cs
- InternalTransaction.cs
- WizardStepBase.cs
- SpanIndex.cs
- WizardSideBarListControlItemEventArgs.cs
- SpotLight.cs
- DataTemplateSelector.cs
- DropDownButton.cs
- UniqueConstraint.cs
- IdnElement.cs
- LayoutSettings.cs
- VariableExpressionConverter.cs
- SpotLight.cs
- XmlResolver.cs
- CqlParser.cs
- MimeTypeAttribute.cs
- EntitySetBase.cs
- TypeToArgumentTypeConverter.cs
- StreamReader.cs
- XamlVector3DCollectionSerializer.cs
- ProcessRequestArgs.cs
- SplineQuaternionKeyFrame.cs
- Size.cs
- GridViewAutoFormat.cs
- DrawingVisualDrawingContext.cs
- SchemaTableColumn.cs
- ProtocolsSection.cs
- _AutoWebProxyScriptWrapper.cs
- XhtmlBasicImageAdapter.cs
- SessionStateContainer.cs
- SemaphoreFullException.cs
- AlternationConverter.cs
- UniqueConstraint.cs
- BookmarkList.cs
- SoapExtensionStream.cs
- CompilationLock.cs
- CredentialSelector.cs
- BrowserCapabilitiesFactoryBase.cs
- SectionInput.cs
- XmlSchemaSimpleContent.cs
- WCFServiceClientProxyGenerator.cs
- WebPartConnectionsCancelVerb.cs
- CategoryAttribute.cs
- LocatorPartList.cs
- AsymmetricKeyExchangeDeformatter.cs
- RuntimeArgumentHandle.cs
- XPathNodeInfoAtom.cs
- OleAutBinder.cs
- DataSourceExpression.cs
- BaseInfoTable.cs
- DbReferenceCollection.cs
- TypeUnloadedException.cs
- XmlSchemaExternal.cs
- FreezableDefaultValueFactory.cs
- HTMLTagNameToTypeMapper.cs
- TypeDescriptionProvider.cs
- LayoutManager.cs
- DataStorage.cs
- FontStyles.cs
- DesignTimeVisibleAttribute.cs
- SpecialFolderEnumConverter.cs
- ContentElement.cs
- AccessDataSourceView.cs
- SynthesizerStateChangedEventArgs.cs
- HttpAsyncResult.cs
- XmlValidatingReaderImpl.cs
- IgnoreSection.cs
- ContentPathSegment.cs
- HeaderedItemsControl.cs
- WebServiceParameterData.cs
- objectquery_tresulttype.cs
- DocumentEventArgs.cs
- TypedTableBase.cs
- LicFileLicenseProvider.cs
- XmlSchemaCompilationSettings.cs
- SqlServer2KCompatibilityCheck.cs
- CodeObject.cs
- CollectionViewGroupRoot.cs
- CommandBinding.cs
- MetaChildrenColumn.cs
- ListGeneralPage.cs
- ReaderContextStackData.cs
- BinaryParser.cs
- DesignerContextDescriptor.cs
- SoapIncludeAttribute.cs
- AttachedAnnotationChangedEventArgs.cs
- Hash.cs
- XmlUtilWriter.cs
- MSG.cs
- EventPropertyMap.cs
- CapiSymmetricAlgorithm.cs
- ipaddressinformationcollection.cs
- XmlWhitespace.cs
- ControlParameter.cs
- PropertyRef.cs
- InvalidOperationException.cs
- DecimalConverter.cs
- DbConnectionStringBuilder.cs