WindowsPrincipal.Identity 属性

定义

获取当前用户的标识。Gets the identity of the current principal.

public:
 virtual property System::Security::Principal::IIdentity ^ Identity { System::Security::Principal::IIdentity ^ get(); };
public override System.Security.Principal.IIdentity Identity { get; }
public virtual System.Security.Principal.IIdentity Identity { get; }
member this.Identity : System.Security.Principal.IIdentity
Public Overrides ReadOnly Property Identity As IIdentity
Public Overridable ReadOnly Property Identity As IIdentity

属性值

IIdentity

当前主体的 WindowsIdentity 对象。The WindowsIdentity object of the current principal.

实现

示例

下面的示例通过使用对象的属性来检索用户的名称 Identity WindowsPrincipalThe following example retrieves the name of the user by using the Identity property of the WindowsPrincipal object.

WindowsPrincipal^ wp = gcnew WindowsPrincipal( WindowsIdentity::GetCurrent() );
String^ username = wp->Identity->Name;
WindowsPrincipal wp = new WindowsPrincipal(WindowsIdentity.GetCurrent());
String username = wp.Identity.Name;

Dim wp As New WindowsPrincipal(WindowsIdentity.GetCurrent())
Dim username As String = wp.Identity.Name

适用于