WebThreadInformation.ThreadID Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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é
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.