Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Configuration / System / Configuration / ConfigurationSectionGroupCollection.cs / 1 / ConfigurationSectionGroupCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Runtime.Serialization; using System.Security.Permissions; [Serializable()] public sealed class ConfigurationSectionGroupCollection : NameObjectCollectionBase { private MgmtConfigurationRecord _configRecord; private ConfigurationSectionGroup _configSectionGroup; // // Create the collection of all section groups in the section group. // internal ConfigurationSectionGroupCollection(MgmtConfigurationRecord configRecord, ConfigurationSectionGroup configSectionGroup) : base(StringComparer.Ordinal) { _configRecord = configRecord; _configSectionGroup = configSectionGroup; foreach (DictionaryEntry de in _configRecord.SectionGroupFactories) { FactoryId factoryId = (FactoryId) de.Value; if (factoryId.Group == _configSectionGroup.SectionGroupName) { BaseAdd(factoryId.Name, factoryId.Name); } } } [SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); } // // Remove the collection from configuration system, and remove all entries // in the base collection so that enumeration will return an empty collection. // internal void DetachFromConfigurationRecord() { _configRecord = null; BaseClear(); } private void VerifyIsAttachedToConfigRecord() { if (_configRecord == null) { throw new InvalidOperationException(SR.GetString(SR.Config_cannot_edit_configurationsectiongroup_when_not_attached)); } } // // Public Properties // // Indexer via name public ConfigurationSectionGroup this[string name] { get { return Get(name); } } // Indexer via integer index. public ConfigurationSectionGroup this[int index] { get { return Get(index); } } // // Public methods // // // Add a new section group to the collection. This will result in a new declaration and definition. // // It is an error if the section already exists. // public void Add(string name, ConfigurationSectionGroup sectionGroup) { VerifyIsAttachedToConfigRecord(); _configRecord.AddConfigurationSectionGroup(_configSectionGroup.SectionGroupName, name, sectionGroup); BaseAdd(name, name); } // // Remove all section groups from the collection. // public void Clear() { VerifyIsAttachedToConfigRecord(); // // If this is the root section group, do not require the location section to be written // to the file. // if (_configSectionGroup.IsRoot) { _configRecord.RemoveLocationWriteRequirement(); } string[] allKeys = BaseGetAllKeys(); foreach (string key in allKeys) { Remove(key); } } // // Return the number of section groups in the collection. // public override int Count { get { return base.Count; } } // // Copy all section groups to an array. // public void CopyTo(ConfigurationSectionGroup[] array, int index) { if (array == null) { throw new ArgumentNullException("array"); } int c = Count; if (array.Length < c + index) { throw new ArgumentOutOfRangeException("index"); } for (int i = 0, j = index; i < c; i++, j++) { array[j] = Get(i); } } // // Get the section group at a given index. // public ConfigurationSectionGroup Get(int index) { return Get(GetKey(index)); } // // Get the section group with a given name. // public ConfigurationSectionGroup Get(string name) { VerifyIsAttachedToConfigRecord(); // validate name if (String.IsNullOrEmpty(name)) throw ExceptionUtil.ParameterNullOrEmpty("name"); // prevent GetConfig from returning config not in this collection if (name.IndexOf('/') >= 0) return null; // get the section group string configKey = BaseConfigurationRecord.CombineConfigKey(_configSectionGroup.SectionGroupName, name); return _configRecord.GetSectionGroup(configKey); } // Get an enumerator public override IEnumerator GetEnumerator() { int c = Count; for (int i = 0; i < c; i++) { yield return this[i]; } } // Get the string key at a given index. public string GetKey(int index) { return (string) BaseGetKey(index); } // Return the string keys of the collection. public override KeysCollection Keys { get { return base.Keys; } } // // Remove the declaration and definition of a section in this config file, including any // location sections in the file. This will also remove any descendant sections and // section groups. // // Note that if the section group is declared in a parent, we still remove the declaration and // definition, and the instance of ConfigurationSectionGroup will be detached from the collection. // However, the collection will still have a ConfigurationSectionGroup of that name in the collection, // only it will have the value of the immediate parent. // public void Remove(string name) { VerifyIsAttachedToConfigRecord(); _configRecord.RemoveConfigurationSectionGroup(_configSectionGroup.SectionGroupName, name); // // Remove the section from the collection if it is no longer in the list of all SectionGroupFactories. // string configKey = BaseConfigurationRecord.CombineConfigKey(_configSectionGroup.SectionGroupName, name); if (!_configRecord.SectionFactories.Contains(configKey)) { BaseRemove(name); } } // // Remove the section at that index. // public void RemoveAt(int index) { VerifyIsAttachedToConfigRecord(); Remove(GetKey(index)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Collections; using System.Collections.Specialized; using System.Runtime.Serialization; using System.Security.Permissions; [Serializable()] public sealed class ConfigurationSectionGroupCollection : NameObjectCollectionBase { private MgmtConfigurationRecord _configRecord; private ConfigurationSectionGroup _configSectionGroup; // // Create the collection of all section groups in the section group. // internal ConfigurationSectionGroupCollection(MgmtConfigurationRecord configRecord, ConfigurationSectionGroup configSectionGroup) : base(StringComparer.Ordinal) { _configRecord = configRecord; _configSectionGroup = configSectionGroup; foreach (DictionaryEntry de in _configRecord.SectionGroupFactories) { FactoryId factoryId = (FactoryId) de.Value; if (factoryId.Group == _configSectionGroup.SectionGroupName) { BaseAdd(factoryId.Name, factoryId.Name); } } } [SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); } // // Remove the collection from configuration system, and remove all entries // in the base collection so that enumeration will return an empty collection. // internal void DetachFromConfigurationRecord() { _configRecord = null; BaseClear(); } private void VerifyIsAttachedToConfigRecord() { if (_configRecord == null) { throw new InvalidOperationException(SR.GetString(SR.Config_cannot_edit_configurationsectiongroup_when_not_attached)); } } // // Public Properties // // Indexer via name public ConfigurationSectionGroup this[string name] { get { return Get(name); } } // Indexer via integer index. public ConfigurationSectionGroup this[int index] { get { return Get(index); } } // // Public methods // // // Add a new section group to the collection. This will result in a new declaration and definition. // // It is an error if the section already exists. // public void Add(string name, ConfigurationSectionGroup sectionGroup) { VerifyIsAttachedToConfigRecord(); _configRecord.AddConfigurationSectionGroup(_configSectionGroup.SectionGroupName, name, sectionGroup); BaseAdd(name, name); } // // Remove all section groups from the collection. // public void Clear() { VerifyIsAttachedToConfigRecord(); // // If this is the root section group, do not require the location section to be written // to the file. // if (_configSectionGroup.IsRoot) { _configRecord.RemoveLocationWriteRequirement(); } string[] allKeys = BaseGetAllKeys(); foreach (string key in allKeys) { Remove(key); } } // // Return the number of section groups in the collection. // public override int Count { get { return base.Count; } } // // Copy all section groups to an array. // public void CopyTo(ConfigurationSectionGroup[] array, int index) { if (array == null) { throw new ArgumentNullException("array"); } int c = Count; if (array.Length < c + index) { throw new ArgumentOutOfRangeException("index"); } for (int i = 0, j = index; i < c; i++, j++) { array[j] = Get(i); } } // // Get the section group at a given index. // public ConfigurationSectionGroup Get(int index) { return Get(GetKey(index)); } // // Get the section group with a given name. // public ConfigurationSectionGroup Get(string name) { VerifyIsAttachedToConfigRecord(); // validate name if (String.IsNullOrEmpty(name)) throw ExceptionUtil.ParameterNullOrEmpty("name"); // prevent GetConfig from returning config not in this collection if (name.IndexOf('/') >= 0) return null; // get the section group string configKey = BaseConfigurationRecord.CombineConfigKey(_configSectionGroup.SectionGroupName, name); return _configRecord.GetSectionGroup(configKey); } // Get an enumerator public override IEnumerator GetEnumerator() { int c = Count; for (int i = 0; i < c; i++) { yield return this[i]; } } // Get the string key at a given index. public string GetKey(int index) { return (string) BaseGetKey(index); } // Return the string keys of the collection. public override KeysCollection Keys { get { return base.Keys; } } // // Remove the declaration and definition of a section in this config file, including any // location sections in the file. This will also remove any descendant sections and // section groups. // // Note that if the section group is declared in a parent, we still remove the declaration and // definition, and the instance of ConfigurationSectionGroup will be detached from the collection. // However, the collection will still have a ConfigurationSectionGroup of that name in the collection, // only it will have the value of the immediate parent. // public void Remove(string name) { VerifyIsAttachedToConfigRecord(); _configRecord.RemoveConfigurationSectionGroup(_configSectionGroup.SectionGroupName, name); // // Remove the section from the collection if it is no longer in the list of all SectionGroupFactories. // string configKey = BaseConfigurationRecord.CombineConfigKey(_configSectionGroup.SectionGroupName, name); if (!_configRecord.SectionFactories.Contains(configKey)) { BaseRemove(name); } } // // Remove the section at that index. // public void RemoveAt(int index) { VerifyIsAttachedToConfigRecord(); Remove(GetKey(index)); } } } // 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
- RadioButton.cs
- TcpAppDomainProtocolHandler.cs
- XpsSerializerFactory.cs
- CompilationUnit.cs
- SamlSecurityToken.cs
- HtmlTableRow.cs
- SectionVisual.cs
- Internal.cs
- _UriSyntax.cs
- DefaultTraceListener.cs
- Events.cs
- PerspectiveCamera.cs
- ImpersonationOption.cs
- ConfigXmlCDataSection.cs
- ManagedCodeMarkers.cs
- BmpBitmapDecoder.cs
- TextFindEngine.cs
- EventMap.cs
- Rule.cs
- ClientScriptItem.cs
- CompositionAdorner.cs
- StreamingContext.cs
- ComplexBindingPropertiesAttribute.cs
- DbDataSourceEnumerator.cs
- InstanceView.cs
- HtmlCommandAdapter.cs
- _SafeNetHandles.cs
- nulltextnavigator.cs
- AttachedProperty.cs
- NavigateEvent.cs
- SqlDeflator.cs
- NotImplementedException.cs
- TextWriterTraceListener.cs
- Effect.cs
- BigInt.cs
- PropertyPushdownHelper.cs
- GlyphElement.cs
- columnmapfactory.cs
- PropertyTabAttribute.cs
- AppDomainCompilerProxy.cs
- TextParentUndoUnit.cs
- LocatorBase.cs
- CompositeKey.cs
- CategoryState.cs
- ObfuscationAttribute.cs
- TimeSpanMinutesConverter.cs
- ToolStripPanelRenderEventArgs.cs
- DataGridTableCollection.cs
- GregorianCalendarHelper.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- BackStopAuthenticationModule.cs
- Script.cs
- DmlSqlGenerator.cs
- ControlBuilder.cs
- LoadedOrUnloadedOperation.cs
- Filter.cs
- StrokeNode.cs
- InputLangChangeEvent.cs
- Cursor.cs
- DateTimeFormatInfo.cs
- SingletonInstanceContextProvider.cs
- CompilerTypeWithParams.cs
- X509PeerCertificateAuthenticationElement.cs
- CodeDomConfigurationHandler.cs
- PropertyBuilder.cs
- WinEventQueueItem.cs
- WindowsGraphicsCacheManager.cs
- RegistryPermission.cs
- ServicePointManagerElement.cs
- TextTrailingCharacterEllipsis.cs
- ContextInformation.cs
- OutKeywords.cs
- CodeTypeParameterCollection.cs
- TypeValidationEventArgs.cs
- InstanceView.cs
- DoWorkEventArgs.cs
- ConvertEvent.cs
- ParameterCollection.cs
- HyperLinkColumn.cs
- DataView.cs
- EnlistmentTraceIdentifier.cs
- CompositeCollectionView.cs
- GacUtil.cs
- ClientProxyGenerator.cs
- Win32.cs
- SiteMapNodeCollection.cs
- PagerSettings.cs
- SafeProcessHandle.cs
- LightweightCodeGenerator.cs
- MenuItemStyle.cs
- PaintValueEventArgs.cs
- RepeatBehaviorConverter.cs
- EmbeddedMailObjectsCollection.cs
- SecurityChannelListener.cs
- XmlTextWriter.cs
- WindowsFormsLinkLabel.cs
- AutomationPropertyInfo.cs
- ScrollPattern.cs
- AggregatePushdown.cs
- PenLineCapValidation.cs