Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Sys / System / Configuration / NameValueSectionHandler.cs / 1 / NameValueSectionHandler.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 /// public class NameValueSectionHandler : IConfigurationSectionHandler { const string defaultKeyAttribute = "key"; const string defaultValueAttribute = "value"; ////// public object Create(object parent, object context, XmlNode section) { return CreateStatic(parent, section, KeyAttributeName, ValueAttributeName); } internal static object CreateStatic(object parent, XmlNode section) { return CreateStatic(parent, section, defaultKeyAttribute, defaultValueAttribute); } internal static object CreateStatic(object parent, XmlNode section, string keyAttriuteName, string valueAttributeName) { ReadOnlyNameValueCollection result; // start result off as a shallow clone of the parent if (parent == null) result = new ReadOnlyNameValueCollection(StringComparer.OrdinalIgnoreCase); else { ReadOnlyNameValueCollection parentCollection = (ReadOnlyNameValueCollection)parent; result = new ReadOnlyNameValueCollection(parentCollection); } // process XML HandlerBase.CheckForUnrecognizedAttributes(section); foreach (XmlNode child in section.ChildNodes) { // skip whitespace and comments if (HandlerBase.IsIgnorableAlsoCheckForNonElement(child)) continue; // handle[To be supplied.] ///, , tags if (child.Name == "add") { String key = HandlerBase.RemoveRequiredAttribute(child, keyAttriuteName); String value = HandlerBase.RemoveRequiredAttribute(child, valueAttributeName, true/*allowEmptyString*/); HandlerBase.CheckForUnrecognizedAttributes(child); result[key] = value; } else if (child.Name == "remove") { String key = HandlerBase.RemoveRequiredAttribute(child, keyAttriuteName); HandlerBase.CheckForUnrecognizedAttributes(child); result.Remove(key); } else if (child.Name.Equals("clear")) { HandlerBase.CheckForUnrecognizedAttributes(child); result.Clear(); } else { HandlerBase.ThrowUnrecognizedElement(child); } } result.SetReadOnly(); return result; } /// /// protected virtual string KeyAttributeName { get { return defaultKeyAttribute;} } ///[To be supplied.] ////// protected virtual string ValueAttributeName { get { return defaultValueAttribute;} } } }[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SecurityIdentifierElement.cs
- BitmapScalingModeValidation.cs
- TextAdaptor.cs
- TextBoxAutomationPeer.cs
- FormView.cs
- TextFormattingConverter.cs
- FileInfo.cs
- SHA1.cs
- TemplateBamlRecordReader.cs
- SetStateEventArgs.cs
- CalloutQueueItem.cs
- ScrollBarAutomationPeer.cs
- FieldAccessException.cs
- GroupBoxDesigner.cs
- MSAAEventDispatcher.cs
- ExportException.cs
- Int32Animation.cs
- FontCacheLogic.cs
- InternalControlCollection.cs
- ClientCredentials.cs
- Substitution.cs
- PageTheme.cs
- RuntimeResourceSet.cs
- AndCondition.cs
- BypassElementCollection.cs
- XmlElementAttributes.cs
- CodeExpressionStatement.cs
- StylusPlugInCollection.cs
- BindingSource.cs
- Decoder.cs
- ScriptIgnoreAttribute.cs
- OracleParameter.cs
- NameHandler.cs
- TransformerInfo.cs
- TreeNodeCollection.cs
- ReadOnlyDictionary.cs
- LoginName.cs
- XmlObjectSerializerWriteContextComplex.cs
- SafeHandles.cs
- DispatchOperation.cs
- EntityConnection.cs
- LineInfo.cs
- UpdateCommand.cs
- LockedAssemblyCache.cs
- OracleDataReader.cs
- InterleavedZipPartStream.cs
- unsafenativemethodstextservices.cs
- InputEventArgs.cs
- SerializationSectionGroup.cs
- AttachedPropertyMethodSelector.cs
- FrameworkElement.cs
- ProcessThreadCollection.cs
- DispatcherEventArgs.cs
- FormsAuthenticationModule.cs
- MetadataWorkspace.cs
- UInt16Storage.cs
- BaseTemplateCodeDomTreeGenerator.cs
- Transform3DGroup.cs
- CompareInfo.cs
- TypeSystem.cs
- ControlPropertyNameConverter.cs
- ValidatingCollection.cs
- ModifierKeysValueSerializer.cs
- EdmToObjectNamespaceMap.cs
- ImportCatalogPart.cs
- DataGridViewRowEventArgs.cs
- DesignerAttribute.cs
- BindableAttribute.cs
- HttpModuleAction.cs
- sqlinternaltransaction.cs
- XmlBinaryWriter.cs
- DefinitionBase.cs
- ArrangedElement.cs
- VisualStyleInformation.cs
- MethodBuilder.cs
- CheckBox.cs
- XamlSerializerUtil.cs
- RenderData.cs
- ErrorEventArgs.cs
- SmtpFailedRecipientException.cs
- Rect3D.cs
- IUnknownConstantAttribute.cs
- ParserContext.cs
- JumpPath.cs
- DirectoryInfo.cs
- AdapterSwitches.cs
- HttpServerVarsCollection.cs
- QueryTask.cs
- XsltArgumentList.cs
- odbcmetadatacollectionnames.cs
- Helpers.cs
- WebPartMenu.cs
- CompositeCollectionView.cs
- LogAppendAsyncResult.cs
- CodeConditionStatement.cs
- X509Chain.cs
- SessionStateItemCollection.cs
- HtmlInputButton.cs
- WebServicesDescriptionAttribute.cs
- BaseParser.cs