Freigeben über


TraceSection.LocalOnly Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob der ASP.NET-Ablaufverfolgungs-Viewer (Trace.axd) nur für Anforderungen vom Hostwebserver verfügbar ist.

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

Eigenschaftswert

true, wenn der ASP.NET-Ablaufverfolgungs-Viewer (Trace.axd) nur für Anforderungen vom Hostwebserver verfügbar ist, andernfalls false. Der Standardwert ist true.

Attribute

Beispiele

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


// Get the current LocalOnly property value.
Boolean localOnlyValue = traceSection.LocalOnly;

// Set the LocalOnly property to false.
traceSection.LocalOnly = false;

' Get the current LocalOnly property value.
Dim localOnlyValue As Boolean = traceSection.LocalOnly

' Set the LocalOnly property to false.
traceSection.LocalOnly = False

Gilt für: