Udostępnij za pośrednictwem


WebThreadInformation.ThreadID Właściwość

Definicja

Pobiera bieżący identyfikator wątku.

public:
 property int ThreadID { int get(); };
public int ThreadID { get; }
member this.ThreadID : int
Public ReadOnly Property ThreadID As Integer

Wartość właściwości

Bieżący identyfikator wątku.

Przykłady

Poniższy przykład kodu pokazuje, jak uzyskać identyfikator wątku.

// Get the task Id.
public string GetThreadId()
{
    // Get the request principal.
    return (string.Format(
        "Thread Id: {0}",
        ThreadInformation.ThreadID.ToString()));
}
' Get the task Id.
Public Function GetThreadId() As String
   ' Get the request principal.
     Return String.Format( _
     "Thread Id: {0}", _
     ThreadInformation.ThreadID.ToString())
End Function 'GetThreadId

Uwagi

Nawet jeśli wątki zarządzane mogą nie mieć bezpośredniego mapowania na wątki systemu operacyjnego, w celach debugowania zawsze przydaje się izolowanie określonego wątku, w którym mogą istnieć problemy.

Dotyczy