Page.TraceEnabled Property

Definition

Sets a value indicating whether tracing is enabled for the Page object.

protected:
 property bool TraceEnabled {  void set(bool value); };
public:
 property bool TraceEnabled { bool get(); void set(bool value); };
protected bool TraceEnabled { set; }
[System.ComponentModel.Browsable(false)]
public bool TraceEnabled { get; set; }
member this.TraceEnabled : bool
[<System.ComponentModel.Browsable(false)>]
member this.TraceEnabled : bool with get, set
Protected Property TraceEnabled As Boolean
Public Property TraceEnabled As Boolean

Property Value

true if tracing is enabled for the page; otherwise, false. The default is false.

Attributes

Remarks

In most circumstances, do not set this property in code. Set the Trace attribute to true in the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the property.

Applies to

See also