Partager via


WebThreadInformation.ThreadID Propriété

Définition

Obtient l'identificateur du thread actuel.

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

Valeur de propriété

Int32

Identificateur du thread actuel.

Exemples

L’exemple de code suivant montre comment obtenir l’identificateur de thread.

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

Remarques

Même si les threads managés peuvent ne pas avoir de mappage direct aux threads du système d’exploitation, à des fins de débogage, il est toujours utile d’isoler un thread spécifique où des problèmes peuvent exister.

S’applique à