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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UpdateManifestForBrowserApplication.cs
- EmbossBitmapEffect.cs
- DateTimeValueSerializerContext.cs
- DataGridViewRowsRemovedEventArgs.cs
- PagedDataSource.cs
- QueueProcessor.cs
- BackgroundFormatInfo.cs
- UserControl.cs
- MenuBindingsEditorForm.cs
- RangeContentEnumerator.cs
- WebPartEditorOkVerb.cs
- SessionEndedEventArgs.cs
- MouseActionValueSerializer.cs
- XmlUtf8RawTextWriter.cs
- DataGridViewSortCompareEventArgs.cs
- ClientConfigPaths.cs
- Quack.cs
- ScriptComponentDescriptor.cs
- LeftCellWrapper.cs
- XmlDigitalSignatureProcessor.cs
- StylusButton.cs
- Span.cs
- Char.cs
- DataTableMapping.cs
- MemoryPressure.cs
- TypeDependencyAttribute.cs
- NavigationService.cs
- WebCategoryAttribute.cs
- linebase.cs
- securitycriticaldata.cs
- EndPoint.cs
- EntityTypeEmitter.cs
- DataTable.cs
- IntegerFacetDescriptionElement.cs
- SlipBehavior.cs
- QueryableDataSource.cs
- SqlGatherProducedAliases.cs
- ConfigurationManagerHelperFactory.cs
- ArrayElementGridEntry.cs
- CurrencyWrapper.cs
- ManagementObjectCollection.cs
- querybuilder.cs
- sapiproxy.cs
- DesignTimeVisibleAttribute.cs
- DefaultAssemblyResolver.cs
- DbDataRecord.cs
- WebPartChrome.cs
- Attribute.cs
- NumericExpr.cs
- DataGridViewCellStyleConverter.cs
- ExtensionElement.cs
- MetabaseServerConfig.cs
- AuthenticationConfig.cs
- CharEnumerator.cs
- ExpressionPrinter.cs
- SecurityRuntime.cs
- ListBoxAutomationPeer.cs
- FileBasedResourceGroveler.cs
- OutputScopeManager.cs
- ToolStripManager.cs
- XmlStringTable.cs
- List.cs
- WebRequestModuleElementCollection.cs
- RenameRuleObjectDialog.cs
- InputDevice.cs
- AdPostCacheSubstitution.cs
- EventProviderWriter.cs
- X509Chain.cs
- WebBrowserProgressChangedEventHandler.cs
- PrivateFontCollection.cs
- SafeFileMappingHandle.cs
- EntityRecordInfo.cs
- GroupItemAutomationPeer.cs
- FirstMatchCodeGroup.cs
- FaultPropagationRecord.cs
- BinHexEncoder.cs
- Quad.cs
- CompiledXpathExpr.cs
- HuffModule.cs
- TokenBasedSetEnumerator.cs
- DataContractSerializerServiceBehavior.cs
- ImageField.cs
- XmlSequenceWriter.cs
- AssemblyBuilderData.cs
- QuaternionValueSerializer.cs
- DataGridViewElement.cs
- WebBrowserNavigatingEventHandler.cs
- HttpCacheParams.cs
- DataSourceListEditor.cs
- SqlDataReader.cs
- TextDecorationCollection.cs
- ReadWriteObjectLock.cs
- LambdaCompiler.Generated.cs
- WebPartCatalogCloseVerb.cs
- ProxyElement.cs
- UIElement.cs
- IListConverters.cs
- IncrementalCompileAnalyzer.cs
- Rotation3DKeyFrameCollection.cs
- UnmanagedMemoryStreamWrapper.cs