WindowsIdentity.Owner Propriedade

Definição

Obtém o SID (identificador de segurança) do proprietário do token.Gets the security identifier (SID) for the token owner.

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

Valor da propriedade

SecurityIdentifier

Um objeto para o proprietário do token.An object for the token owner.

Atributos

Exemplos

O exemplo de código a seguir mostra o uso da Owner propriedade para exibir o identificador de segurança para o proprietário do token.The following code example shows the use of the Owner property to display the security identifier for the token owner. Este exemplo de código é parte de um exemplo maior fornecido para a WindowsIdentity classeThis code example is part of a larger example provided for the WindowsIdentity class

// 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())

Comentários

O SID identifica exclusivamente um usuário ou grupo em todas as implementações do Windows NT.The SID uniquely identifies a user or group on all Windows NT implementations. O SID retornado identifica o SID de proprietário padrão que será aplicado aos objetos recém-criados.The returned SID identifies the default owner SID that will be applied to newly created objects.

Aplica-se a