SectionInformation.AllowExeDefinition Eigenschaft

Definition

Ruft einen Wert ab, der angibt, wo der zugeordnete Konfigurationsabschnitt in der Hierarchie der Konfigurationsdatei deklariert werden kann, oder legt diesen fest.

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

Eigenschaftswert

Ein Wert, der angibt, an welcher Stelle in der Hierarchie der Konfigurationsdatei das zugeordnete ConfigurationSection-Objekt für EXE-Dateien deklariert werden kann.

Ausnahmen

Der ausgewählte Wert steht in Konflikt mit einem bereits definierten Wert.

Beispiele

Die Beispiele in diesem Abschnitt zeigen, wie Sie den AllowExeDefinition Eigenschaftswert abrufen, nachdem Sie auf die entsprechenden Abschnittsinformationen in der Konfigurationsdatei zugegriffen haben.

Im folgenden Beispiel wird das SectionInformation -Objekt abgerufen.

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

Im folgenden Beispiel wird der AllowExeDefinition Wert abgerufen.

ConfigurationAllowExeDefinition allowExeDefinition =
                sInfo.AllowExeDefinition;
Console.WriteLine("Allow exe definition: {0}",
   allowExeDefinition.ToString());
Dim allowExeDefinition _
As ConfigurationAllowExeDefinition = _
sInfo.AllowExeDefinition
Console.WriteLine("Allow exe definition: {0}", _
allowExeDefinition.ToString())

Hinweise

AllowExeDefinition gilt nur für Konfigurationsdateien von Clientanwendungen. Für Webanwendungen müssen Sie verwenden AllowDefinition.

Gilt für:

Weitere Informationen