Sdílet prostřednictvím


WebErrorEvent.ThreadInformation Vlastnost

Definice

Získá informace o vlákně aplikace.

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

Hodnota vlastnosti

WebThreadInformation

Objekt WebThreadInformation , který obsahuje informace o aktuálním vlákně.

Příklady

Následující příklad kódu ukazuje, jak získat hodnotu aplikace ThreadInformation .

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

Platí pro