Code:
/ 4.0 / 4.0 / untmp / 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.] ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StreamGeometry.cs
- ErrorWebPart.cs
- XmlSchemaProviderAttribute.cs
- AdornerDecorator.cs
- StreamingContext.cs
- SqlUtils.cs
- PathGeometry.cs
- DrawingContextWalker.cs
- CallInfo.cs
- DecoderFallbackWithFailureFlag.cs
- UndirectedGraph.cs
- BrowserTree.cs
- SizeAnimationUsingKeyFrames.cs
- FormattedTextSymbols.cs
- SqlVisitor.cs
- ItemContainerPattern.cs
- TransactionTraceIdentifier.cs
- SerialReceived.cs
- DesignerSerializationVisibilityAttribute.cs
- GridViewUpdateEventArgs.cs
- MaskInputRejectedEventArgs.cs
- CircleHotSpot.cs
- UrlParameterWriter.cs
- GlyphRunDrawing.cs
- basevalidator.cs
- SourceFilter.cs
- MethodBody.cs
- ValidatingReaderNodeData.cs
- ConfigurationValidatorAttribute.cs
- OpenTypeCommon.cs
- DocumentViewerAutomationPeer.cs
- UiaCoreTypesApi.cs
- ScriptControlManager.cs
- Solver.cs
- DBSchemaTable.cs
- XmlWrappingWriter.cs
- PackWebRequestFactory.cs
- SequentialOutput.cs
- MemoryRecordBuffer.cs
- XmlIncludeAttribute.cs
- AgileSafeNativeMemoryHandle.cs
- Context.cs
- DoubleAnimationClockResource.cs
- Char.cs
- HeaderCollection.cs
- HTMLTagNameToTypeMapper.cs
- TextRangeProviderWrapper.cs
- BinaryObjectWriter.cs
- ZipIORawDataFileBlock.cs
- CircleHotSpot.cs
- SqlXmlStorage.cs
- LinkClickEvent.cs
- Base64Decoder.cs
- BitmapData.cs
- TextTabProperties.cs
- FileRecordSequenceCompletedAsyncResult.cs
- ExceptionHelpers.cs
- SynchronizedInputPattern.cs
- X509UI.cs
- EmissiveMaterial.cs
- RowVisual.cs
- PromptBuilder.cs
- SqlBuilder.cs
- XmlQualifiedName.cs
- Hashtable.cs
- BitVector32.cs
- X509Certificate2Collection.cs
- BitArray.cs
- Message.cs
- smtpconnection.cs
- SupportingTokenChannel.cs
- EDesignUtil.cs
- CoTaskMemSafeHandle.cs
- Version.cs
- DocumentPage.cs
- MSAAEventDispatcher.cs
- _SpnDictionary.cs
- Task.cs
- DataServiceKeyAttribute.cs
- MessagePartDescriptionCollection.cs
- CustomAttributeBuilder.cs
- TextFindEngine.cs
- CompareValidator.cs
- ComAwareEventInfo.cs
- ListSourceHelper.cs
- CodeTypeParameterCollection.cs
- HttpStreamMessage.cs
- StrongNameUtility.cs
- CheckBox.cs
- XmlDownloadManager.cs
- OSFeature.cs
- SqlDataSourceAdvancedOptionsForm.cs
- PrePostDescendentsWalker.cs
- InputBinding.cs
- IxmlLineInfo.cs
- ComEventsSink.cs
- GPStream.cs
- HwndKeyboardInputProvider.cs
- BamlRecordHelper.cs
- Char.cs