SectionInformation.AllowDefinition Eigenschap

Definitie

Hiermee wordt een waarde opgehaald of ingesteld die aangeeft waar in de configuratiebestandshiërarchie de bijbehorende configuratiesectie kan worden gedefinieerd.

public:
 property System::Configuration::ConfigurationAllowDefinition AllowDefinition { System::Configuration::ConfigurationAllowDefinition get(); void set(System::Configuration::ConfigurationAllowDefinition value); };
public System.Configuration.ConfigurationAllowDefinition AllowDefinition { get; set; }
member this.AllowDefinition : System.Configuration.ConfigurationAllowDefinition with get, set
Public Property AllowDefinition As ConfigurationAllowDefinition

Waarde van eigenschap

Een waarde die aangeeft waar in de hiërarchie van het configuratiebestand het bijbehorende ConfigurationSection object kan worden gedeclareerd.

Uitzonderingen

De geselecteerde waarde conflicteert met een waarde die al is gedefinieerd.

Voorbeelden

In de voorbeelden in deze sectie ziet u hoe u de AllowDefinition eigenschapswaarde kunt ophalen nadat u de gerelateerde sectiegegevens in het configuratiebestand hebt geopend.

In het volgende voorbeeld wordt het SectionInformation object opgehaald.

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

In het volgende voorbeeld wordt de AllowDefinition waarde opgehaald.

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

Opmerkingen

AllowDefinition is alleen van toepassing op configuratiebestanden van webtoepassingen. Voor clienttoepassingen moet u gebruiken AllowExeDefinition.

Van toepassing op

Zie ook