WebThreadInformation.ThreadAccountName Proprietà

Definizione

Ottiene il nome dell'account del thread.

public:
 property System::String ^ ThreadAccountName { System::String ^ get(); };
public string ThreadAccountName { get; }
member this.ThreadAccountName : string
Public ReadOnly Property ThreadAccountName As String

Valore della proprietà

Nome dell'account del thread.

Esempio

Nell'esempio di codice seguente viene illustrato come ottenere il nome dell'account thread.

// Get the account name.
public string GetThreadAccountName()
{
    return (string.Format(
        "Request user host address: {0}",
        ThreadInformation.ThreadAccountName));
}
' Get the account name.
Public Function GetThreadAccountName() As String
     Return String.Format( _
     "Request user host address: {0}", _
     ThreadInformation.ThreadAccountName)
End Function 'GetThreadAccountName

Commenti

L'account restituito da questa proprietà potrebbe essere arbitrario se il thread è in esecuzione in modalità di rappresentazione.

Si applica a