WindowsIdentity.Owner プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
トークン所有者のセキュリティ識別子 (SID) を取得します。
public:
property System::Security::Principal::SecurityIdentifier ^ Owner { System::Security::Principal::SecurityIdentifier ^ get(); };
public System.Security.Principal.SecurityIdentifier? Owner { get; }
public System.Security.Principal.SecurityIdentifier Owner { get; }
[System.Runtime.InteropServices.ComVisible(false)]
public System.Security.Principal.SecurityIdentifier Owner { get; }
member this.Owner : System.Security.Principal.SecurityIdentifier
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.Owner : System.Security.Principal.SecurityIdentifier
Public ReadOnly Property Owner As SecurityIdentifier
プロパティ値
トークン所有者のオブジェクト。
- 属性
例
次のコード例は、 プロパティを Owner 使用してトークン所有者のセキュリティ識別子を表示する方法を示しています。 このコード例は、 クラスに対して提供されるより大きな例の WindowsIdentity 一部です
// Display the SID for the owner.
Console.Write("The SID for the owner is : ");
SecurityIdentifier si = windowsIdentity.Owner;
Console.WriteLine(si.ToString());
' Display the SID for the owner.
Console.Write("The SID for the owner is : ")
Dim si As SecurityIdentifier
si = windowsIdentity.Owner
Console.WriteLine(si.ToString())
注釈
SID は、すべての Windows NT 実装でユーザーまたはグループを一意に識別します。 返される SID は、新しく作成されたオブジェクトに適用される既定の所有者 SID を識別します。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET