WindowsIdentity.Owner 속성

정의

토큰 소유자의 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

속성 값

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를 식별 합니다.

적용 대상