Udostępnij za pośrednictwem


TraceSection.Enabled Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy usługa śledzenia ASP.NET jest włączona.

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

Wartość właściwości

true w przypadku włączenia śledzenia; w przeciwnym razie , false. Wartość domyślna to true.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać Enabled właściwości. Ten przykład kodu jest częścią większego przykładu podanego TraceSection dla klasy.


// Get the current Enabled property value.
Boolean enabledValue = traceSection.Enabled;

// Set the Enabled property to false.
traceSection.Enabled = false;

' Get the current Enabled property value.
Dim enabledValue As Boolean = traceSection.Enabled

' Set the Enabled property to false.
traceSection.Enabled = False

Dotyczy

Zobacz też