Freigeben über


TraceSection.PageOutput Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die ASP.NET-Ablaufverfolgungsinformationen an die Ausgabe jeder Seite angefügt werden, oder legt diesen fest.

public:
 property bool PageOutput { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("pageOutput", DefaultValue=false)]
public bool PageOutput { get; set; }
[<System.Configuration.ConfigurationProperty("pageOutput", DefaultValue=false)>]
member this.PageOutput : bool with get, set
Public Property PageOutput As Boolean

Eigenschaftswert

true, wenn die Ablaufverfolgungsinformationen an jede Seite angefügt werden, andernfalls false. Der Standardwert ist false.

Attribute

Beispiele

Im folgenden Codebeispiel wird die Verwendung der PageOutput-Eigenschaft veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die TraceSection-Klasse bereitgestellt wird.


// Get the current PageOutput property value.
Boolean pageOutputValue = traceSection.PageOutput;

// Set the PageOutput property to true.
traceSection.PageOutput = true;

' Get the current PageOutput property value.
Dim pageOutputValue As Boolean = traceSection.PageOutput

' Set the PageOutput property to true.
traceSection.PageOutput = True

Gilt für: