Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / KeyValueConfigurationCollection.cs / 1305376 / KeyValueConfigurationCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; [ConfigurationCollection(typeof(KeyValueConfigurationElement))] public class KeyValueConfigurationCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static KeyValueConfigurationCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected internal override ConfigurationPropertyCollection Properties { get { return _properties; } } // // Constructor // public KeyValueConfigurationCollection() : base(StringComparer.OrdinalIgnoreCase) { internalAddToEnd = true; } // // Accessors // protected override bool ThrowOnDuplicate { get { return false; } } public new KeyValueConfigurationElement this[string key] { get { return (KeyValueConfigurationElement)BaseGet(key); } #if DONT_COMPILE // if we ever expose this element this will be handy set { int index = -1; // append by default KeyValueConfigurationElement tempElement = (KeyValueConfigurationElement)BaseGet(key); if (tempElement != null) { index = BaseIndexOf(tempElement); BaseRemoveAt(index); } BaseAdd(index, value); } #endif } public String[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } // // Methods // public void Add(KeyValueConfigurationElement keyValue) { // Need to initialize in order to get the key keyValue.Init(); // the appsettings add works more like a namevalue collection add in that it appends values // when add is called and teh key already exists. KeyValueConfigurationElement oldValue = (KeyValueConfigurationElement)BaseGet(keyValue.Key); if (oldValue == null) { BaseAdd(keyValue); } else { oldValue.Value += "," + keyValue.Value; int index = BaseIndexOf(oldValue); BaseRemoveAt(index); BaseAdd(index, oldValue); } } public void Add(String key, String value) { KeyValueConfigurationElement element = new KeyValueConfigurationElement(key, value); Add(element); } #if DONT_COMPILE public void Remove(KeyValueConfigurationElement keyValue) { if (BaseIndexOf(keyValue) >= 0) BaseRemove(keyValue.Key); } #endif public void Remove(string key) { BaseRemove(key); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new KeyValueConfigurationElement(); } protected override object GetElementKey(ConfigurationElement element) { return ((KeyValueConfigurationElement)element).Key; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.IO; using System.Text; [ConfigurationCollection(typeof(KeyValueConfigurationElement))] public class KeyValueConfigurationCollection : ConfigurationElementCollection { private static ConfigurationPropertyCollection _properties; static KeyValueConfigurationCollection() { // Property initialization _properties = new ConfigurationPropertyCollection(); } protected internal override ConfigurationPropertyCollection Properties { get { return _properties; } } // // Constructor // public KeyValueConfigurationCollection() : base(StringComparer.OrdinalIgnoreCase) { internalAddToEnd = true; } // // Accessors // protected override bool ThrowOnDuplicate { get { return false; } } public new KeyValueConfigurationElement this[string key] { get { return (KeyValueConfigurationElement)BaseGet(key); } #if DONT_COMPILE // if we ever expose this element this will be handy set { int index = -1; // append by default KeyValueConfigurationElement tempElement = (KeyValueConfigurationElement)BaseGet(key); if (tempElement != null) { index = BaseIndexOf(tempElement); BaseRemoveAt(index); } BaseAdd(index, value); } #endif } public String[] AllKeys { get { return StringUtil.ObjectArrayToStringArray(BaseGetAllKeys()); } } // // Methods // public void Add(KeyValueConfigurationElement keyValue) { // Need to initialize in order to get the key keyValue.Init(); // the appsettings add works more like a namevalue collection add in that it appends values // when add is called and teh key already exists. KeyValueConfigurationElement oldValue = (KeyValueConfigurationElement)BaseGet(keyValue.Key); if (oldValue == null) { BaseAdd(keyValue); } else { oldValue.Value += "," + keyValue.Value; int index = BaseIndexOf(oldValue); BaseRemoveAt(index); BaseAdd(index, oldValue); } } public void Add(String key, String value) { KeyValueConfigurationElement element = new KeyValueConfigurationElement(key, value); Add(element); } #if DONT_COMPILE public void Remove(KeyValueConfigurationElement keyValue) { if (BaseIndexOf(keyValue) >= 0) BaseRemove(keyValue.Key); } #endif public void Remove(string key) { BaseRemove(key); } public void Clear() { BaseClear(); } protected override ConfigurationElement CreateNewElement() { return new KeyValueConfigurationElement(); } protected override object GetElementKey(ConfigurationElement element) { return ((KeyValueConfigurationElement)element).Key; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OptimizedTemplateContent.cs
- documentation.cs
- ContainerFilterService.cs
- OdbcDataAdapter.cs
- ToolboxComponentsCreatedEventArgs.cs
- SiteMapHierarchicalDataSourceView.cs
- RankException.cs
- tabpagecollectioneditor.cs
- CharEntityEncoderFallback.cs
- ComponentChangingEvent.cs
- HttpProfileGroupBase.cs
- DataServiceContext.cs
- WorkflowEnvironment.cs
- __TransparentProxy.cs
- EndpointFilterProvider.cs
- Encoder.cs
- KnownBoxes.cs
- GroupBox.cs
- X509Certificate2.cs
- EncryptedPackageFilter.cs
- ScriptingProfileServiceSection.cs
- QilXmlWriter.cs
- DiagnosticEventProvider.cs
- WorkItem.cs
- Control.cs
- GPRECTF.cs
- _TransmitFileOverlappedAsyncResult.cs
- SurrogateSelector.cs
- Rectangle.cs
- Helpers.cs
- RealizationContext.cs
- AsyncPostBackTrigger.cs
- ToolStripMenuItemDesigner.cs
- RealizationDrawingContextWalker.cs
- UserControl.cs
- JournalNavigationScope.cs
- WebPartConnectionsDisconnectVerb.cs
- PlainXmlSerializer.cs
- ComplexTypeEmitter.cs
- ReaderContextStackData.cs
- CacheMemory.cs
- CodeTypeReferenceCollection.cs
- DataListItemEventArgs.cs
- CreateRefExpr.cs
- PasswordRecovery.cs
- SqlRowUpdatingEvent.cs
- Validator.cs
- TypeConstant.cs
- FixedFlowMap.cs
- VoiceObjectToken.cs
- ConfigUtil.cs
- NumberFunctions.cs
- Formatter.cs
- TextServicesCompartment.cs
- _ProxyChain.cs
- FlowDocumentFormatter.cs
- DataGridRow.cs
- SerTrace.cs
- CheckBox.cs
- InternalEnumValidatorAttribute.cs
- X509CertificateValidationMode.cs
- TableCellCollection.cs
- ConfigXmlAttribute.cs
- exports.cs
- XmlJsonWriter.cs
- BitmapEffectState.cs
- VisualStyleInformation.cs
- BitmapData.cs
- DecimalConstantAttribute.cs
- GeometryCollection.cs
- MatrixUtil.cs
- CompilationLock.cs
- PageAsyncTaskManager.cs
- login.cs
- SafeRightsManagementQueryHandle.cs
- CacheChildrenQuery.cs
- DbConnectionPoolOptions.cs
- RecordManager.cs
- DesignerDeviceConfig.cs
- RegexCharClass.cs
- TemplateField.cs
- ItemsControlAutomationPeer.cs
- Int64Animation.cs
- AuthorizationRuleCollection.cs
- Hashtable.cs
- PageMediaSize.cs
- SmtpCommands.cs
- XmlImplementation.cs
- filewebrequest.cs
- SystemIPv4InterfaceProperties.cs
- CodeMethodReturnStatement.cs
- MetadataWorkspace.cs
- ListBoxItemWrapperAutomationPeer.cs
- DataServiceRequest.cs
- Dispatcher.cs
- RuleSettingsCollection.cs
- XmlSchemaAttribute.cs
- CalendarSelectionChangedEventArgs.cs
- SeverityFilter.cs
- URLString.cs