Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Sys / System / Configuration / DictionarySectionHandler.cs / 1 / DictionarySectionHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Xml; using System.Globalization; ////// Simple dictionary config factory /// config is a dictionary mapping key->value /// /// <add key="name" value="text"> sets key=text /// <remove key="name"> removes the definition of key /// <clear> removes all definitions /// /// public class DictionarySectionHandler : IConfigurationSectionHandler { ////// Given a partially composed config object (possibly null) /// and some input from the config system, return a /// further partially composed config object /// public virtual object Create(Object parent, Object context, XmlNode section) { Hashtable res; // start res off as a shallow clone of the parent if (parent == null) res = new Hashtable(StringComparer.OrdinalIgnoreCase); else res = (Hashtable)((Hashtable)parent).Clone(); // process XML HandlerBase.CheckForUnrecognizedAttributes(section); foreach (XmlNode child in section.ChildNodes) { // skip whitespace and comments, throws if non-element if (HandlerBase.IsIgnorableAlsoCheckForNonElement(child)) continue; // handle, , tags if (child.Name == "add") { HandlerBase.CheckForChildNodes(child); String key = HandlerBase.RemoveRequiredAttribute(child, KeyAttributeName); String value; if (ValueRequired) value = HandlerBase.RemoveRequiredAttribute(child, ValueAttributeName); else value = HandlerBase.RemoveAttribute(child, ValueAttributeName); HandlerBase.CheckForUnrecognizedAttributes(child); if (value == null) value = ""; res[key] = value; } else if (child.Name == "remove") { HandlerBase.CheckForChildNodes(child); String key = HandlerBase.RemoveRequiredAttribute(child, KeyAttributeName); HandlerBase.CheckForUnrecognizedAttributes(child); res.Remove(key); } else if (child.Name.Equals("clear")) { HandlerBase.CheckForChildNodes(child); HandlerBase.CheckForUnrecognizedAttributes(child); res.Clear(); } else { HandlerBase.ThrowUnrecognizedElement(child); } } return res; } /// /// Make the name of the key attribute configurable by derived classes. /// protected virtual string KeyAttributeName { get { return "key";} } ////// Make the name of the value attribute configurable by derived classes. /// protected virtual string ValueAttributeName { get { return "value";} } // internal virtual bool ValueRequired { get { return false; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Xml; using System.Globalization; ////// Simple dictionary config factory /// config is a dictionary mapping key->value /// /// <add key="name" value="text"> sets key=text /// <remove key="name"> removes the definition of key /// <clear> removes all definitions /// /// public class DictionarySectionHandler : IConfigurationSectionHandler { ////// Given a partially composed config object (possibly null) /// and some input from the config system, return a /// further partially composed config object /// public virtual object Create(Object parent, Object context, XmlNode section) { Hashtable res; // start res off as a shallow clone of the parent if (parent == null) res = new Hashtable(StringComparer.OrdinalIgnoreCase); else res = (Hashtable)((Hashtable)parent).Clone(); // process XML HandlerBase.CheckForUnrecognizedAttributes(section); foreach (XmlNode child in section.ChildNodes) { // skip whitespace and comments, throws if non-element if (HandlerBase.IsIgnorableAlsoCheckForNonElement(child)) continue; // handle, , tags if (child.Name == "add") { HandlerBase.CheckForChildNodes(child); String key = HandlerBase.RemoveRequiredAttribute(child, KeyAttributeName); String value; if (ValueRequired) value = HandlerBase.RemoveRequiredAttribute(child, ValueAttributeName); else value = HandlerBase.RemoveAttribute(child, ValueAttributeName); HandlerBase.CheckForUnrecognizedAttributes(child); if (value == null) value = ""; res[key] = value; } else if (child.Name == "remove") { HandlerBase.CheckForChildNodes(child); String key = HandlerBase.RemoveRequiredAttribute(child, KeyAttributeName); HandlerBase.CheckForUnrecognizedAttributes(child); res.Remove(key); } else if (child.Name.Equals("clear")) { HandlerBase.CheckForChildNodes(child); HandlerBase.CheckForUnrecognizedAttributes(child); res.Clear(); } else { HandlerBase.ThrowUnrecognizedElement(child); } } return res; } /// /// Make the name of the key attribute configurable by derived classes. /// protected virtual string KeyAttributeName { get { return "key";} } ////// Make the name of the value attribute configurable by derived classes. /// protected virtual string ValueAttributeName { get { return "value";} } // internal virtual bool ValueRequired { get { return false; } } } } // 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
- CompilerInfo.cs
- _DigestClient.cs
- DataColumnMappingCollection.cs
- EncodingStreamWrapper.cs
- RuleSetReference.cs
- DataColumnPropertyDescriptor.cs
- Lock.cs
- ProfileManager.cs
- SystemIPAddressInformation.cs
- XmlEntityReference.cs
- MeasureItemEvent.cs
- DataGridViewRowContextMenuStripNeededEventArgs.cs
- X509SubjectKeyIdentifierClause.cs
- QualificationDataAttribute.cs
- X509ClientCertificateCredentialsElement.cs
- _NTAuthentication.cs
- StylusPointPropertyInfoDefaults.cs
- SequentialOutput.cs
- MenuRenderer.cs
- EventListener.cs
- SymbolEqualComparer.cs
- MSAAEventDispatcher.cs
- RemotingConfigParser.cs
- Int32EqualityComparer.cs
- bidPrivateBase.cs
- ScriptManagerProxy.cs
- TypefaceCollection.cs
- ResourceKey.cs
- BamlRecordReader.cs
- RangeValueProviderWrapper.cs
- MatrixConverter.cs
- IProvider.cs
- XmlSerializerAssemblyAttribute.cs
- MemoryMappedFile.cs
- ConfigurationSettings.cs
- PrintController.cs
- NotCondition.cs
- MultiPropertyDescriptorGridEntry.cs
- DiagnosticsConfiguration.cs
- UnmanagedMarshal.cs
- Vector3DCollectionValueSerializer.cs
- DefaultParameterValueAttribute.cs
- StrokeRenderer.cs
- KeyBinding.cs
- xsdvalidator.cs
- Trace.cs
- DataSourceXmlTextReader.cs
- X509Certificate2.cs
- ResourceBinder.cs
- SqlRecordBuffer.cs
- RegexCapture.cs
- ItemAutomationPeer.cs
- HttpCookiesSection.cs
- RTLAwareMessageBox.cs
- Rfc2898DeriveBytes.cs
- DataSvcMapFile.cs
- XmlNamedNodeMap.cs
- IRCollection.cs
- AsyncPostBackErrorEventArgs.cs
- LocalizableAttribute.cs
- ColumnResizeUndoUnit.cs
- NamespaceList.cs
- StrongTypingException.cs
- ReadOnlyObservableCollection.cs
- DecimalConstantAttribute.cs
- xsdvalidator.cs
- XmlAnyElementAttribute.cs
- TextServicesDisplayAttribute.cs
- ComponentConverter.cs
- ProfileProvider.cs
- XsdBuildProvider.cs
- CheckBoxAutomationPeer.cs
- StaticSiteMapProvider.cs
- StorageRoot.cs
- HideDisabledControlAdapter.cs
- Dynamic.cs
- UniqueIdentifierService.cs
- DependencyPropertyAttribute.cs
- HttpBrowserCapabilitiesWrapper.cs
- sqlmetadatafactory.cs
- HttpRuntime.cs
- ParseElement.cs
- columnmapfactory.cs
- TdsRecordBufferSetter.cs
- CroppedBitmap.cs
- LocalFileSettingsProvider.cs
- ContractSearchPattern.cs
- TransactedReceiveScope.cs
- SafeViewOfFileHandle.cs
- ColumnHeader.cs
- DataGridViewComboBoxEditingControl.cs
- HttpProfileBase.cs
- ColumnPropertiesGroup.cs
- WebScriptEnablingElement.cs
- ButtonChrome.cs
- PersonalizationStateInfoCollection.cs
- DropShadowBitmapEffect.cs
- InkCanvas.cs
- FormattedText.cs
- EntityRecordInfo.cs