Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- SweepDirectionValidation.cs
- LongCountAggregationOperator.cs
- Lock.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- DependencyObject.cs
- AnnotationHighlightLayer.cs
- HttpProxyTransportBindingElement.cs
- BrowserCapabilitiesFactory35.cs
- SyncMethodInvoker.cs
- CodeDOMUtility.cs
- TimerElapsedEvenArgs.cs
- PeerValidationBehavior.cs
- XmlSchemaRedefine.cs
- TraceHandler.cs
- XslTransformFileEditor.cs
- PictureBox.cs
- CredentialManagerDialog.cs
- StorageMappingFragment.cs
- StyleSheetDesigner.cs
- DoubleAnimation.cs
- SyntaxCheck.cs
- _FtpDataStream.cs
- NoneExcludedImageIndexConverter.cs
- NativeMethods.cs
- Double.cs
- ManualWorkflowSchedulerService.cs
- IdentityHolder.cs
- InheritanceRules.cs
- ControlEvent.cs
- WebPartEditorApplyVerb.cs
- CryptoKeySecurity.cs
- Polygon.cs
- MenuStrip.cs
- CheckBoxPopupAdapter.cs
- CultureMapper.cs
- TextRangeEdit.cs
- brushes.cs
- CapabilitiesUse.cs
- DifferencingCollection.cs
- Application.cs
- ListSortDescriptionCollection.cs
- ToolBarButtonClickEvent.cs
- WebPartActionVerb.cs
- SiteMapPathDesigner.cs
- CompiledXpathExpr.cs
- GetWinFXPath.cs
- EastAsianLunisolarCalendar.cs
- Duration.cs
- SmtpException.cs
- ParserOptions.cs
- SerializationSectionGroup.cs
- EventNotify.cs
- DataList.cs
- TemplateInstanceAttribute.cs
- Task.cs
- ConfigurationValue.cs
- DataStorage.cs
- CapabilitiesAssignment.cs
- EventManager.cs
- DataGridViewColumn.cs
- LassoSelectionBehavior.cs
- ResXResourceWriter.cs
- CodeIdentifiers.cs
- bindurihelper.cs
- SerializationInfoEnumerator.cs
- WebPartConnectionsCancelVerb.cs
- IPGlobalProperties.cs
- MarkupWriter.cs
- WmlPhoneCallAdapter.cs
- XamlBrushSerializer.cs
- PkcsUtils.cs
- DecimalConstantAttribute.cs
- MsmqIntegrationSecurity.cs
- StateManagedCollection.cs
- PackageProperties.cs
- TimeoutTimer.cs
- Panel.cs
- KeyInterop.cs
- ClipboardData.cs
- CompletedAsyncResult.cs
- SqlDataSourceStatusEventArgs.cs
- DesignerActionService.cs
- NullExtension.cs
- Relationship.cs
- ADMembershipUser.cs
- RelationshipManager.cs
- EnumBuilder.cs
- XmlSerializationReader.cs
- Stream.cs
- login.cs
- DataGridViewCellParsingEventArgs.cs
- DataSetMappper.cs
- Line.cs
- XmlDocumentSerializer.cs
- UriTemplateTable.cs
- XmlCodeExporter.cs
- TraceSource.cs
- ConfigurationErrorsException.cs
- OperationFormatter.cs
- XPathParser.cs