Page.TraceEnabled Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.