WebThreadInformation.ThreadID 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 스레드 식별자를 가져옵니다.
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 스레드를 직접 매핑이 없을 경우에 유용 항상 문제가 발생할 수 있는 특정 스레드에 격리 합니다.