Freigeben über


WebThreadInformation.IsImpersonating Eigenschaft

Definition

Ruft den aktuellen Threadidentitätswechselmodus ab.

public:
 property bool IsImpersonating { bool get(); };
public bool IsImpersonating { get; }
member this.IsImpersonating : bool
Public ReadOnly Property IsImpersonating As Boolean

Eigenschaftswert

Boolean

true, wenn der Thread im Identitätswechselmodus ausgeführt wird, andernfalls false.

Beispiele

Im folgenden Codebeispiel wird gezeigt, wie der Thread-Imitierungsmodus abgerufen wird.

// Get the impersonation mode.
public string GetThreadImpersonation()
{
    return (string.Format(
        "Is impersonating: {0}",
        ThreadInformation.IsImpersonating.ToString()));
}
' Get the impersonation mode.
Public Function GetThreadImpersonation() As String
     Return String.Format( _
     "Is impersonating: {0}", _
     ThreadInformation.IsImpersonating.ToString())
End Function 'GetThreadImpersonation

Gilt für