Udostępnij za pośrednictwem


TraceSection.WriteToDiagnosticsTrace Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy komunikaty emitowane za pośrednictwem śledzenia strony są przekazywane do wystąpienia Trace klasy.

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

Wartość właściwości

true jeśli komunikaty śledzenia są wysyłane do Trace klasy; w przeciwnym razie false. Wartość domyślna to false.

Atrybuty

Przykłady

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


// Get the current WriteToDiagnosticsTrace property value.
Boolean writeToDiagnosticsTraceValue = traceSection.WriteToDiagnosticsTrace;

// Set the WriteToDiagnosticsTrace property to true.
traceSection.WriteToDiagnosticsTrace = true;

' Get the current WriteToDiagnosticsTrace property value.
Dim writeToDiagnosticsTraceValue As Boolean = traceSection.WriteToDiagnosticsTrace

' Set the WriteToDiagnosticsTrace property to true.
traceSection.WriteToDiagnosticsTrace = True

Dotyczy