WindowsPrincipal.Identity プロパティ
現在のプリンシパルの ID を取得します。
Public Overridable ReadOnly Property Identity As IIdentity _ Implements IPrincipal.Identity
[C#]
public virtual IIdentity Identity {get;}
[C++]
public: __property virtual IIdentity* get_Identity();
[JScript]
public function get Identity() : IIdentity;
プロパティ値
現在のプリンシパルの WindowsIdentity オブジェクト。
実装
使用例
[Visual Basic, C#, C++] WindowsPrincipal オブジェクトの Identity プロパティを使用して、ユーザーの名前を取得する例を次に示します。
Dim wp As New WindowsPrincipal(WindowsIdentity.GetCurrent())
Dim username As String = wp.Identity.Name
[C#]
WindowsPrincipal wp = new WindowsPrincipal(WindowsIdentity.GetCurrent());
String username = wp.Identity.Name;
[C++]
WindowsPrincipal* wp = new WindowsPrincipal(WindowsIdentity::GetCurrent());
String* username = wp->Identity->Name;
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
WindowsPrincipal クラス | WindowsPrincipal メンバ | System.Security.Principal 名前空間