Поделиться через


TraceSection.PageOutput Свойство

Определение

Возвращает или задает значение, указывающее на то, добавлены ли сведения о трассировке ASP.NET к выводу каждой страницы.

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

Значение свойства

Значение true, если сведения о трассировке добавлены к каждой странице, иначе значение false. Значение по умолчанию — false.

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство PageOutput. Этот пример входит в состав более крупного примера использования класса TraceSection.


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

Применяется к