WindowsIdentity.IsAnonymous-Eigenschaft
Ruft einen Wert ab, der angibt, ob das Benutzerkonto vom System als anonymes Konto identifiziert wird.
Namespace: System.Security.Principal
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Overridable ReadOnly Property IsAnonymous As Boolean
'Usage
Dim instance As WindowsIdentity
Dim value As Boolean
value = instance.IsAnonymous
public virtual bool IsAnonymous { get; }
public:
virtual property bool IsAnonymous {
bool get ();
}
/** @property */
public boolean get_IsAnonymous ()
public function get IsAnonymous () : boolean
Eigenschaftenwert
true, wenn das Benutzerkonto ein anonymes Konto ist, andernfalls false.
Hinweise
Anonyme Konten sind normalerweise nur innerhalb von auf ASP.NET beruhenden Anwendungen anzutreffen, wenn der anonyme Zugriff durch Microsoft Internetinformationsdienste zugelassen wird.
Beispiel
Im folgenden Code wird veranschaulicht, wie mithilfe der IsAnonymous-Eigenschaft ein Wert zurückgegeben wird, der angibt, ob das Benutzerkonto vom System als anonymes Konto identifiziert wird. Dieses Codebeispiel ist Teil eines umfangreicheren Beispiels für die WindowsIdentity-Klasse.
If Not windowsIdentity.IsAnonymous Then
if (!windowsIdentity.IsAnonymous)
if ( !windowsIdentity->IsAnonymous )
if (!(windowsIdentity.get_IsAnonymous()))
{
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