WebThreadInformation.ThreadID Proprietà

Definizione

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.

Si applica a