Aracılığıyla paylaş


TraceSection.PageOutput Özellik

Tanım

ASP.NET izleme bilgilerinin her sayfanın çıkışına eklenip eklenmediğini belirten bir değer alır veya ayarlar.

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

Özellik Değeri

true izleme bilgileri her sayfaya eklenirse; aksi takdirde , false. Varsayılan değer: false.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğinin PageOutput nasıl kullanılacağını gösterir. Bu kod örneği, sınıfı için TraceSection sağlanan daha büyük bir örneğin parçasıdır.


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

Şunlara uygulanır