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 线程,出于调试目的,隔离可能存在问题的特定线程也始终很有用。

适用于