Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / NameValueSectionHandler.cs / 1305376 / 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
- SpeakProgressEventArgs.cs
- securestring.cs
- FixedPageProcessor.cs
- WindowsFormsSynchronizationContext.cs
- MILUtilities.cs
- MorphHelpers.cs
- RangeValuePattern.cs
- SmiMetaData.cs
- AlternationConverter.cs
- NativeMethods.cs
- Array.cs
- HandleValueEditor.cs
- URIFormatException.cs
- DependencyPropertyAttribute.cs
- CharStorage.cs
- RTLAwareMessageBox.cs
- ParseNumbers.cs
- ImportContext.cs
- NamespaceInfo.cs
- TextParagraph.cs
- NamespaceMapping.cs
- CommentAction.cs
- BindingExpressionBase.cs
- XamlDesignerSerializationManager.cs
- WebPartMovingEventArgs.cs
- HttpGetServerProtocol.cs
- StringUtil.cs
- UrlAuthorizationModule.cs
- ResourceAssociationTypeEnd.cs
- CorrelationToken.cs
- ZipIOExtraField.cs
- MessagePropertyVariants.cs
- AdRotator.cs
- DirectionalLight.cs
- TrackPointCollection.cs
- EndpointInstanceProvider.cs
- BufferModeSettings.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- UICuesEvent.cs
- DataGridViewSelectedCellCollection.cs
- TableLayoutStyle.cs
- KoreanCalendar.cs
- CngProvider.cs
- RepeaterItemCollection.cs
- DesignerOptionService.cs
- MessageQueue.cs
- TokenBasedSetEnumerator.cs
- ItemCheckEvent.cs
- RotationValidation.cs
- BoolExpr.cs
- TrackingProfile.cs
- ByteStreamGeometryContext.cs
- WinInet.cs
- HandledMouseEvent.cs
- TriggerAction.cs
- SelectionRangeConverter.cs
- DbConnectionInternal.cs
- entitydatasourceentitysetnameconverter.cs
- StructuralObject.cs
- QuadraticBezierSegment.cs
- DomainUpDown.cs
- HttpsHostedTransportConfiguration.cs
- XmlSchemaNotation.cs
- XamlSerializerUtil.cs
- FileIOPermission.cs
- shaper.cs
- ProxyManager.cs
- DesignerVerbCollection.cs
- CommandLineParser.cs
- basenumberconverter.cs
- ToolTip.cs
- WindowsRichEdit.cs
- Cast.cs
- WindowsStreamSecurityUpgradeProvider.cs
- DecoderFallback.cs
- storepermission.cs
- DateTimeParse.cs
- GridViewCommandEventArgs.cs
- DataGridViewCellLinkedList.cs
- XmlFormatReaderGenerator.cs
- IList.cs
- ComplexLine.cs
- ColorMap.cs
- LinkLabelLinkClickedEvent.cs
- AttributeUsageAttribute.cs
- WebRequestModuleElementCollection.cs
- NativeMethods.cs
- DiscardableAttribute.cs
- SafeArchiveContext.cs
- ArrayExtension.cs
- ControlValuePropertyAttribute.cs
- XamlClipboardData.cs
- BitmapMetadata.cs
- NativeObjectSecurity.cs
- Point3DKeyFrameCollection.cs
- ServicePoint.cs
- ResourceWriter.cs
- CodeVariableReferenceExpression.cs
- EncodingInfo.cs
- XslNumber.cs