Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / DictionarySectionHandler.cs / 1305376 / 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
- ResourceExpression.cs
- HtmlControlAdapter.cs
- _OSSOCK.cs
- ExtensionQuery.cs
- MetadataLocation.cs
- Attributes.cs
- AudioException.cs
- AsymmetricKeyExchangeDeformatter.cs
- ErrorInfoXmlDocument.cs
- Frame.cs
- ReceiveErrorHandling.cs
- GetTokenRequest.cs
- InlineObject.cs
- RandomNumberGenerator.cs
- BeginGetFileNameFromUserRequest.cs
- HttpDictionary.cs
- FindCriteriaApril2005.cs
- ResXBuildProvider.cs
- X509CertificateTrustedIssuerElement.cs
- SignatureHelper.cs
- TypedAsyncResult.cs
- TreeNodeBindingCollection.cs
- SettingsProperty.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- MailAddressCollection.cs
- DotNetATv1WindowsLogEntryDeserializer.cs
- XsltInput.cs
- RadioButtonBaseAdapter.cs
- WindowsListViewItemStartMenu.cs
- CodeCommentStatementCollection.cs
- CurrentChangedEventManager.cs
- GlobalItem.cs
- XmlSchemaSimpleContentRestriction.cs
- AliasedSlot.cs
- DataServiceClientException.cs
- TokenBasedSet.cs
- ChannelPoolSettingsElement.cs
- AdCreatedEventArgs.cs
- WindowsNonControl.cs
- Scanner.cs
- DateTimeConverter.cs
- EntityDataSourceMemberPath.cs
- JsonStringDataContract.cs
- XmlTextEncoder.cs
- RequestTimeoutManager.cs
- NameTable.cs
- HttpProfileGroupBase.cs
- XmlSchemaAny.cs
- SessionState.cs
- XmlEntity.cs
- Visual3D.cs
- DetailsViewInsertEventArgs.cs
- ResourceCategoryAttribute.cs
- TitleStyle.cs
- DetailsViewUpdatedEventArgs.cs
- SqlParameter.cs
- DynamicValidator.cs
- ConnectionModeReader.cs
- CustomBindingElement.cs
- RuntimeConfigLKG.cs
- DashStyle.cs
- FamilyMap.cs
- MeshGeometry3D.cs
- GetKeyedHashRequest.cs
- MsmqIntegrationReceiveParameters.cs
- WindowsButton.cs
- CodeVariableReferenceExpression.cs
- XPathDocumentNavigator.cs
- PolyLineSegment.cs
- IsolatedStoragePermission.cs
- GiveFeedbackEvent.cs
- KerberosSecurityTokenAuthenticator.cs
- PreviousTrackingServiceAttribute.cs
- Internal.cs
- SessionStateSection.cs
- OverrideMode.cs
- StyleCollection.cs
- _OverlappedAsyncResult.cs
- EncryptedType.cs
- PointKeyFrameCollection.cs
- Stylus.cs
- Invariant.cs
- InsufficientMemoryException.cs
- MessageLogTraceRecord.cs
- PropertyChangingEventArgs.cs
- TransformPatternIdentifiers.cs
- DesignerTransactionCloseEvent.cs
- IDQuery.cs
- Geometry3D.cs
- FixedBufferAttribute.cs
- TabControl.cs
- ExceptionList.cs
- ToolStripTextBox.cs
- SoapConverter.cs
- QueryExpression.cs
- SharedUtils.cs
- MetadataStore.cs
- FormViewInsertedEventArgs.cs
- IISMapPath.cs
- Size.cs