Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- IntranetCredentialPolicy.cs
- DesignerLabelAdapter.cs
- ThreadStateException.cs
- DataServiceQueryException.cs
- BaseCAMarshaler.cs
- BasicSecurityProfileVersion.cs
- RelOps.cs
- ImageKeyConverter.cs
- OdbcPermission.cs
- EncryptedPackage.cs
- XmlWhitespace.cs
- StringExpressionSet.cs
- EntityCodeGenerator.cs
- ServiceCredentialsElement.cs
- SettingsAttributes.cs
- RedirectionProxy.cs
- RuleSetCollection.cs
- ColumnPropertiesGroup.cs
- DocumentPageTextView.cs
- Keywords.cs
- XPathMessageFilterElementCollection.cs
- ErrorEventArgs.cs
- PrincipalPermissionMode.cs
- PageCodeDomTreeGenerator.cs
- ToolStripPanelRenderEventArgs.cs
- ChannelManagerHelpers.cs
- DrawListViewSubItemEventArgs.cs
- IgnoreSectionHandler.cs
- RestHandlerFactory.cs
- AccessDataSourceView.cs
- RadioButtonBaseAdapter.cs
- SamlAssertion.cs
- EmptyReadOnlyDictionaryInternal.cs
- ButtonDesigner.cs
- WorkflowOperationAsyncResult.cs
- StandardToolWindows.cs
- SecurityToken.cs
- ColumnMapProcessor.cs
- Symbol.cs
- connectionpool.cs
- SQLRoleProvider.cs
- TextEffect.cs
- DbParameterCollectionHelper.cs
- ValidationError.cs
- RadioButtonBaseAdapter.cs
- WizardForm.cs
- CopyAction.cs
- SecurityAccessDeniedException.cs
- ResourceDescriptionAttribute.cs
- HwndSource.cs
- WindowsRichEditRange.cs
- StringConverter.cs
- ListSortDescription.cs
- DesignerCategoryAttribute.cs
- DrawingVisual.cs
- Filter.cs
- odbcmetadatafactory.cs
- AxHostDesigner.cs
- ProcessHostServerConfig.cs
- ExtensionDataReader.cs
- COM2EnumConverter.cs
- DataGrid.cs
- FirstQueryOperator.cs
- OleDbConnectionFactory.cs
- Vector3dCollection.cs
- BookmarkUndoUnit.cs
- DocumentReferenceCollection.cs
- PartEditor.cs
- regiisutil.cs
- Validator.cs
- Int32.cs
- LicenseException.cs
- HtmlHead.cs
- FacetEnabledSchemaElement.cs
- SqlTransaction.cs
- CorePropertiesFilter.cs
- DefaultObjectSerializer.cs
- cookiecontainer.cs
- VSWCFServiceContractGenerator.cs
- EventLogEntry.cs
- InputLanguageEventArgs.cs
- DecoderBestFitFallback.cs
- TcpConnectionPoolSettings.cs
- UserMapPath.cs
- Helpers.cs
- MissingManifestResourceException.cs
- InternalControlCollection.cs
- XmlDigitalSignatureProcessor.cs
- WindowsGraphicsWrapper.cs
- SqlComparer.cs
- ToolStripItemClickedEventArgs.cs
- RetriableClipboard.cs
- CompilerResults.cs
- Wildcard.cs
- Model3D.cs
- HttpDebugHandler.cs
- PersonalizationAdministration.cs
- SrgsElementFactory.cs
- EventItfInfo.cs
- UrlMappingsModule.cs