SectionInformation Class

Definition

Contains metadata about an individual section within the configuration hierarchy. This class cannot be inherited.

public ref class SectionInformation sealed
public sealed class SectionInformation
type SectionInformation = class
Public NotInheritable Class SectionInformation
Inheritance
SectionInformation

Examples

The following example shows how to get the SectionInformation metadata that is associated with a ConfigurationSection object.

static public SectionInformation 
    GetSectionInformation()
{

    // Get the current configuration file.
    System.Configuration.Configuration config =
            ConfigurationManager.OpenExeConfiguration(
            ConfigurationUserLevel.None);

    // Get the section.
    UrlsSection section =
        (UrlsSection)config.GetSection("MyUrls");

    SectionInformation sInfo = 
        section.SectionInformation;

    return sInfo;
}
Public Shared Function GetSectionInformation() _
As SectionInformation

    ' Get the current configuration file.
    Dim config _
    As System.Configuration.Configuration = _
    ConfigurationManager.OpenExeConfiguration( _
    ConfigurationUserLevel.None)

    ' Get the section.
    Dim section As UrlsSection = _
    CType(config.GetSection("MyUrls"), UrlsSection)

    Dim sInfo As SectionInformation = _
    section.SectionInformation

    Return sInfo

End Function 'GetSectionInformation

The following example is an excerpt of the configuration file that is used by the previous example.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <section name="MyUrls" type="Samples.AspNet.UrlsSection,
      ConfigurationElement, Version=1.0.0.0, Culture=neutral,
      PublicKeyToken=null" allowDefinition="Everywhere"
      allowExeDefinition="MachineToApplication"
      restartOnExternalChanges="true" />
  </configSections>
  <MyUrls name="MyFavorites">
    <simple name="Contoso" url="http://www.contoso.com" port="8080" />
    <urls>
      <clear />
      <add name="Microsoft" url="http://www.microsoft.com" port="0" />
    </urls>
  </MyUrls>
</configuration>

Remarks

The SectionInformation object contains the metadata about an individual section within the configuration hierarchy. This object can be used in order to validate and change the properties of an individual section.

Properties

AllowDefinition

Gets or sets a value that indicates where in the configuration file hierarchy the associated configuration section can be defined.

AllowExeDefinition

Gets or sets a value that indicates where in the configuration file hierarchy the associated configuration section can be declared.

AllowLocation

Gets or sets a value that indicates whether the configuration section allows the location attribute.

AllowOverride

Gets or sets a value that indicates whether the associated configuration section can be overridden by lower-level configuration files.

ConfigSource

Gets or sets the name of the include file in which the associated configuration section is defined, if such a file exists.

ConfigurationBuilder

Gets the ConfigurationBuilder object for this configuration section.

ForceSave

Gets or sets a value that indicates whether the associated configuration section will be saved even if it has not been modified.

InheritInChildApplications

Gets or sets a value that indicates whether the settings that are specified in the associated configuration section are inherited by applications that reside in a subdirectory of the relevant application.

IsDeclarationRequired

Gets a value that indicates whether the configuration section must be declared in the configuration file.

IsDeclared

Gets a value that indicates whether the associated configuration section is declared in the configuration file.

IsLocked

Gets a value that indicates whether the associated configuration section is locked.

IsProtected

Gets a value that indicates whether the associated configuration section is protected.

Name

Gets the name of the associated configuration section.

OverrideMode

Gets or sets the OverrideMode enumeration value that specifies whether the associated configuration section can be overridden by child configuration files.

OverrideModeDefault

Gets or sets a value that specifies the default override behavior of a configuration section by child configuration files.

OverrideModeEffective

Gets the override behavior of a configuration section that is in turn based on whether child configuration files can lock the configuration section.

ProtectionProvider

Gets the protected configuration provider for the associated configuration section.

RequirePermission

Gets a value that indicates whether the associated configuration section requires access permissions.

RestartOnExternalChanges

Gets or sets a value that specifies whether a change in an external configuration include file requires an application restart.

SectionName

Gets the name of the associated configuration section.

Type

Gets or sets the section class name.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
ForceDeclaration()

Forces the associated configuration section to appear in the configuration file.

ForceDeclaration(Boolean)

Forces the associated configuration section to appear in the configuration file, or removes an existing section from the configuration file.

GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetParentSection()

Gets the configuration section that contains the configuration section associated with this object.

GetRawXml()

Returns an XML node object that represents the associated configuration-section object.

GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ProtectSection(String)

Marks a configuration section for protection.

RevertToParent()

Causes the associated configuration section to inherit all its values from the parent section.

SetRawXml(String)

Sets the object to an XML representation of the associated configuration section within the configuration file.

ToString()

Returns a string that represents the current object.

(Inherited from Object)
UnprotectSection()

Removes the protected configuration encryption from the associated configuration section.

Applies to

See also