Freigeben über


WebErrorEvent.ThreadInformation Eigenschaft

Definition

Ruft die Anwendungsthreadinformationen ab.

public:
 property System::Web::Management::WebThreadInformation ^ ThreadInformation { System::Web::Management::WebThreadInformation ^ get(); };
public System.Web.Management.WebThreadInformation ThreadInformation { get; }
member this.ThreadInformation : System.Web.Management.WebThreadInformation
Public ReadOnly Property ThreadInformation As WebThreadInformation

Eigenschaftswert

WebThreadInformation

Ein WebThreadInformation-Objekt, das Informationen über den aktuellen Thread enthält.

Beispiele

Im folgenden Codebeispiel wird gezeigt, wie der Anwendungswert ThreadInformation abgerufen wird.

// Obtains the current thread information.
public string GetThreadInfo()
{
    string threadInfo = GetThreadInfo();
    return threadInfo;
}
' Obtains the current thread information.
Public Function GetThreadInfo() As String
   Dim threadInfo As String = GetThreadInfo()
   Return threadInfo
End Function 'GetThreadInfo

Gilt für