WebThreadInformation.ThreadID Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene l'identificatore del thread attuale.
public:
property int ThreadID { int get(); };
public int ThreadID { get; }
member this.ThreadID : int
Public ReadOnly Property ThreadID As Integer
Valore della proprietà
Identificatore del thread attuale.
Esempio
Nell'esempio di codice seguente viene illustrato come ottenere l'identificatore del 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
Commenti
Anche se i thread gestiti potrebbero non avere il mapping diretto ai thread del sistema operativo, a scopo di debug, è sempre utile isolare un thread specifico in cui potrebbero esistere problemi.