次の方法で共有


WebThreadInformation.ThreadID プロパティ

定義

現在のスレッドの識別子を取得します。

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

プロパティ値

現在のスレッドの識別子。

次のコード例は、スレッド識別子を取得する方法を示しています。

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

注釈

マネージド スレッドが OS スレッドに直接マッピングされていない可能性がある場合でも、デバッグの目的で、問題が存在する可能性がある特定のスレッドを分離することは常に役立ちます。

適用対象