Udostępnij za pośrednictwem


TraceSection.PageOutput Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą, czy informacje śledzenia ASP.NET są dołączane do danych wyjściowych każdej strony.

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

Wartość właściwości

true jeśli informacje o śledzeniu są dołączane do każdej strony; w przeciwnym razie , false. Wartość domyślna to false.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać PageOutput właściwości . Ten przykład kodu jest częścią większego przykładu udostępnionego TraceSection dla klasy .


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

Dotyczy