Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectDataSourceSelectingEventArgs.cs
- IOThreadScheduler.cs
- SqlFacetAttribute.cs
- VectorAnimationBase.cs
- StringAnimationUsingKeyFrames.cs
- ListViewEditEventArgs.cs
- ToolStripGrip.cs
- StringStorage.cs
- KeyNameIdentifierClause.cs
- StateManagedCollection.cs
- ObjectParameter.cs
- SerialPinChanges.cs
- StartUpEventArgs.cs
- PersonalizationStateInfo.cs
- FragmentQueryKB.cs
- OptimisticConcurrencyException.cs
- ClassImporter.cs
- ValueUtilsSmi.cs
- XsltQilFactory.cs
- WmlLiteralTextAdapter.cs
- PlacementWorkspace.cs
- ThreadStaticAttribute.cs
- SchemaTypeEmitter.cs
- DependencyObjectValidator.cs
- RuleSetDialog.Designer.cs
- DescendentsWalker.cs
- XmlSerializerSection.cs
- WebPartZoneBaseDesigner.cs
- ChooseAction.cs
- StandardRuntimeEnumValidator.cs
- VersionedStreamOwner.cs
- ADMembershipProvider.cs
- ServiceOperationWrapper.cs
- Glyph.cs
- SafeProcessHandle.cs
- relpropertyhelper.cs
- DataReceivedEventArgs.cs
- BamlLocalizableResource.cs
- TimeoutConverter.cs
- PersonalizationStateQuery.cs
- OdbcDataReader.cs
- NativeMethods.cs
- ExpressionVisitor.cs
- Compiler.cs
- ResourcesGenerator.cs
- XPathSelectionIterator.cs
- RemotingConfiguration.cs
- Annotation.cs
- NativeMethods.cs
- MobileControlsSection.cs
- Binding.cs
- SoapEnumAttribute.cs
- TextEditorTables.cs
- DBPropSet.cs
- AuthenticationSection.cs
- OrderedDictionary.cs
- TreeViewImageIndexConverter.cs
- PngBitmapEncoder.cs
- HostSecurityManager.cs
- XmlReflectionMember.cs
- HandleCollector.cs
- XmlNodeComparer.cs
- MatrixTransform.cs
- RsaKeyGen.cs
- FunctionParameter.cs
- DataRowCollection.cs
- PrincipalPermission.cs
- SystemPens.cs
- XamlInterfaces.cs
- ImageField.cs
- XsltContext.cs
- NetworkInterface.cs
- ImageCreator.cs
- SqlDataSourceCommandParser.cs
- FaultDescriptionCollection.cs
- FolderLevelBuildProviderAppliesToAttribute.cs
- UnaryQueryOperator.cs
- MultipleFilterMatchesException.cs
- TagNameToTypeMapper.cs
- TcpClientChannel.cs
- EntityDescriptor.cs
- SortKey.cs
- HttpDigestClientElement.cs
- XslVisitor.cs
- TransformCryptoHandle.cs
- InvokeDelegate.cs
- remotingproxy.cs
- ServiceReference.cs
- JournalEntry.cs
- DbSetClause.cs
- COM2ColorConverter.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- PointUtil.cs
- DateTimeSerializationSection.cs
- TextEndOfSegment.cs
- AnimationLayer.cs
- PrintPreviewControl.cs
- TemplateKey.cs
- DataReaderContainer.cs
- EntityAdapter.cs