WindowsIdentity.Name プロパティ

定義

ユーザーの Windows ログオン名を取得します。

public:
 virtual property System::String ^ Name { System::String ^ get(); };
public override string Name { get; }
public virtual string Name { get; }
member this.Name : string
Public Overrides ReadOnly Property Name As String
Public Overridable ReadOnly Property Name As String

プロパティ値

コードが実行されている対象ユーザーの Windows ログオン名。

実装

次のコードは、 プロパティを Name 使用してユーザーの Windows ログオン名を取得する方法を示しています。 このコード例は、WindowsIdentity クラスのために提供されている大規模な例の一部です。

propertyDescription = String::Concat( propertyDescription, windowsIdentity->Name );
propertyDescription += windowsIdentity.Name;
propertyDescription += windowsIdentity.Name

注釈

ログオン名は DOMAIN\USERNAME という形式です。

適用対象