Freigeben über


WindowsIdentity.AuthenticationType-Eigenschaft

Ruft den zur Identifizierung des Benutzers verwendeten Authentifizierungstyp ab.

Namespace: System.Security.Principal
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public ReadOnly Property AuthenticationType As String
'Usage
Dim instance As WindowsIdentity
Dim value As String

value = instance.AuthenticationType
public string AuthenticationType { get; }
public:
virtual property String^ AuthenticationType {
    String^ get () sealed;
}
/** @property */
public final String get_AuthenticationType ()
public final function get AuthenticationType () : String

Eigenschaftenwert

Der zur Identifizierung des Benutzers verwendete Authentifizierungstyp.

Hinweise

Der Authentifizierungstyp für WindowsIdentity-Objekte ist normalerweise NTLM.

Beispiel

Im folgenden Code wird veranschaulicht, wie mit der AuthenticationType-Eigenschaft der zur Identifizierung des Benutzers verwendete Authentifizierungstyp abgerufen wird. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die WindowsIdentity-Klasse.

Dim authenticationType As String = windowsIdentity.AuthenticationType
String authenticationType = windowsIdentity.AuthenticationType;
String^ authenticationType = windowsIdentity->AuthenticationType;
String authenticationType = windowsIdentity.get_AuthenticationType();

Plattformen

Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

WindowsIdentity-Klasse
WindowsIdentity-Member
System.Security.Principal-Namespace