SectionInformation.AllowOverride Property (System.Configuration)

Switch View :
ScriptFree
.NET Framework Class Library
SectionInformation.AllowOverride Property

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

Namespace:  System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)
Syntax

Visual Basic
Public Property AllowOverride As Boolean
	Get
	Set
C#
public bool AllowOverride { get; set; }
Visual C++
public:
property bool AllowOverride {
	bool get ();
	void set (bool value);
}
F#
member AllowOverride : bool with get, set

Property Value

Type: System.Boolean
true if the section can be overridden; otherwise, false. The default is false.
Examples

The examples in this section show how to get the AllowOverride property value after accessing the related section information in the configuration file.

The following example gets the SectionInformation object.

Visual Basic

' 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


C#

// 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;


The following example gets the AllowOverride value.

Visual Basic

Dim allowOverride As Boolean = _
sInfo.AllowOverride
Console.WriteLine("Allow override: {0}", _
allowOverride.ToString())


C#

bool allowOverride =
    sInfo.AllowOverride;
Console.WriteLine("Allow override: {0}",
               allowOverride.ToString());


Version Information

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1
Platforms

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
See Also

Reference