WebThreadInformation.ThreadAccountName Property

Definition

Gets the thread account name.

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

Property Value

The thread account name.

Examples

The following code example shows how to get the thread account name.

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

Remarks

The account returned by this property might be arbitrary if the thread is executing in impersonation mode.

Applies to