Bagikan melalui


TraceSection.Enabled Properti

Definisi

Mendapatkan atau menetapkan nilai yang menunjukkan apakah layanan pelacakan ASP.NET diaktifkan.

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

Nilai Properti

true jika pelacakan diaktifkan; jika tidak, false. Default adalah true.

Atribut

Contoh

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


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

Berlaku untuk

Lihat juga