다음을 통해 공유


WebThreadInformation.ThreadID 속성

정의

현재 스레드 식별자를 가져옵니다.

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

속성 값

Int32

현재 스레드 식별자입니다.

예제

다음 코드 예제에는 스레드 식별자를 가져오는 방법을 보여 줍니다.

// 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 스레드를 직접 매핑이 없을 경우에 유용 항상 문제가 발생할 수 있는 특정 스레드에 격리 합니다.

적용 대상