WindowsIdentity.GetAnonymous Method ()

 

Returns a WindowsIdentity object that you can use as a sentinel value in your code to represent an anonymous user. The property value does not represent the built-in anonymous identity used by the Windows operating system.

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

static member GetAnonymous : unit -> WindowsIdentity

Return Value

Type: System.Security.Principal.WindowsIdentity

An object that represents an anonymous user.

This property returns an empty WindowsIdentity object that enables you to treat operations as anonymous. The property value does not correspond to a Windows anonymous user and cannot be used for impersonation. Also, note that the identity returned by this property is not static; each call to GetAnonymous returns a different anonymous identity.

You can use the IsAnonymous property to detect the return value from GetAnonymous. However, IsAnonymous detects both the Windows anonymous identity and the anonymous identity returned by this method. To use the latter identity, cache the GetAnonymous return value instead of relying on the IsAnonymous property.

The following code shows the use of the GetAnonymous method to return a WindowsIdentity object that represents an anonymous Windows user. This code example is part of a larger example provided for the WindowsIdentity class.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: