Udostępnij za pośrednictwem


HttpRuntimeSection.Enable Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy domena aplikacji jest włączona.

public:
 property bool Enable { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("enable", DefaultValue=true)]
public bool Enable { get; set; }
[<System.Configuration.ConfigurationProperty("enable", DefaultValue=true)>]
member this.Enable : bool with get, set
Public Property Enable As Boolean

Wartość właściwości

Boolean

true jeśli domena aplikacji jest włączona; w przeciwnym razie , false. Wartość domyślna to true.

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak używać Enable właściwości.

// Get the Enable property value.
Response.Write("Enable: " +
  configSection.Enable + "<br>");

// Set the Enable property value to true.
configSection.Enable = true;
' Get the Enable property value.
Response.Write("Enable: " & _
  configSection.Enable & "<br>")

' Set the Enable property value to true.
configSection.Enable = True

Uwagi

To ustawienie ma wpływ na domenę lub domeny aplikacji na bieżącym poziomie węzła i poniżej.

Dotyczy

Zobacz też