TraceSection.Enabled Property

Definition

Gets or sets a value indicating whether the ASP.NET trace service is enabled.

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

Property Value

true if trace is enabled; otherwise, false. The default is true.

Attributes

Examples

The following code example shows how to use the Enabled property. This code example is part of a larger example provided for the TraceSection class.


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

Applies to

See also