WindowsIdentity.ImpersonationLevel Property

 

Gets the impersonation level for the user.

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

<ComVisibleAttribute(False)>
Public ReadOnly Property ImpersonationLevel As TokenImpersonationLevel

Property Value

Type: System.Security.Principal.TokenImpersonationLevel

One of the enumeration values that specifies the impersonation level.

Describes the impersonation level to be used to connect to WMI.

The following code example shows the use of the ImpersonationLevel property to display the impersonation level for the current user. This code example is part of a larger example provided for the WindowsIdentity class.

Dim token As TokenImpersonationLevel
token = windowsIdentity.ImpersonationLevel
Console.WriteLine("The impersonation level for the current user is : " + token.ToString())

.NET Framework
Available since 2.0
Return to top
Show: