Bagikan melalui


TraceSection.WriteToDiagnosticsTrace Properti

Definisi

Mendapatkan atau menetapkan nilai yang menunjukkan apakah pesan yang dipancarkan melalui jejak halaman diteruskan ke instans Trace kelas.

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

Nilai Properti

true jika pesan pelacakan dikirim ke Trace kelas; jika tidak, false. Defaultnya adalah false.

Atribut

Contoh

Contoh kode berikut menunjukkan cara menggunakan WriteToDiagnosticsTrace properti . Contoh kode ini adalah bagian dari contoh yang lebih besar yang disediakan untuk TraceSection kelas .


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

Berlaku untuk