SectionInformation.AllowDefinition Property (System.Configuration)

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

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

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

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

Property Value

Type: System.Configuration.ConfigurationAllowDefinition
A value that indicates where in the configuration file hierarchy the associated ConfigurationSection object can be declared.
Exceptions

Exception Condition
ConfigurationErrorsException

The selected value conflicts with a value that is already defined.

Remarks

AllowDefinition applies only to configuration files of Web applications. For client applications, you must use AllowExeDefinition.

Examples

The examples in this section show how to get the AllowDefinition 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 AllowDefinition value.

Visual Basic

Dim allowDefinition _
As ConfigurationAllowDefinition = _
sInfo.AllowDefinition
Console.WriteLine("Allow definition: {0}", _
allowDefinition.ToString())


C#

ConfigurationAllowDefinition allowDefinition =
    sInfo.AllowDefinition;
Console.WriteLine("Allow definition: {0}", 
    allowDefinition.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