Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- FormsAuthenticationConfiguration.cs
- ResumeStoryboard.cs
- DataGridViewTopRowAccessibleObject.cs
- PropertyChangingEventArgs.cs
- DataDesignUtil.cs
- HttpContext.cs
- Light.cs
- BaseAppDomainProtocolHandler.cs
- TextTreeRootNode.cs
- JumpList.cs
- ToolTip.cs
- FixUp.cs
- OdbcStatementHandle.cs
- SevenBitStream.cs
- CapacityStreamGeometryContext.cs
- CacheVirtualItemsEvent.cs
- GridViewRowEventArgs.cs
- ApplicationFileParser.cs
- JoinCqlBlock.cs
- TreeView.cs
- XmlSchema.cs
- VersionPair.cs
- GridProviderWrapper.cs
- ListViewPagedDataSource.cs
- Attachment.cs
- NetSectionGroup.cs
- StrongNamePublicKeyBlob.cs
- ViewCellSlot.cs
- FtpWebRequest.cs
- FormViewDeleteEventArgs.cs
- SectionVisual.cs
- SqlMetaData.cs
- SymLanguageType.cs
- MsmqAppDomainProtocolHandler.cs
- InvalidTimeZoneException.cs
- SystemNetHelpers.cs
- EffectiveValueEntry.cs
- SingleTagSectionHandler.cs
- SharedConnectionWorkflowTransactionService.cs
- ObjectDataSourceFilteringEventArgs.cs
- EnterpriseServicesHelper.cs
- WCFModelStrings.Designer.cs
- MSAANativeProvider.cs
- HtmlLinkAdapter.cs
- ServiceHostingEnvironment.cs
- HybridDictionary.cs
- ArraySubsetEnumerator.cs
- Formatter.cs
- Tool.cs
- TraversalRequest.cs
- FieldBuilder.cs
- DBDataPermission.cs
- SecurityState.cs
- BitmapScalingModeValidation.cs
- DeleteIndexBinder.cs
- AssociationSetMetadata.cs
- RegistryExceptionHelper.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- WebPartExportVerb.cs
- DiagnosticTrace.cs
- InertiaTranslationBehavior.cs
- GridView.cs
- TypeSystem.cs
- ThumbAutomationPeer.cs
- TextEffectResolver.cs
- BitmapEffectDrawingContextState.cs
- XmlConverter.cs
- SspiHelper.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- TracingConnectionInitiator.cs
- WmfPlaceableFileHeader.cs
- ImagingCache.cs
- AssemblyAttributesGoHere.cs
- VisualStyleRenderer.cs
- ColumnMapCopier.cs
- OleDbErrorCollection.cs
- cryptoapiTransform.cs
- jithelpers.cs
- BlockUIContainer.cs
- ServiceContractGenerationContext.cs
- ZipIOModeEnforcingStream.cs
- Match.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- IpcClientManager.cs
- ClientConvert.cs
- DesignerActionTextItem.cs
- ButtonField.cs
- VoiceObjectToken.cs
- BindingSourceDesigner.cs
- _AuthenticationState.cs
- ApplicationFileCodeDomTreeGenerator.cs
- OleDbFactory.cs
- SqlInfoMessageEvent.cs
- ValuePatternIdentifiers.cs
- ManagedIStream.cs
- Convert.cs
- precedingquery.cs
- TabletDeviceInfo.cs
- PresentationSource.cs
- Popup.cs