WindowsIdentity.Groups Właściwość

Definicja

Pobiera grupy, do których należy Windows użytkownik.

public:
 property System::Security::Principal::IdentityReferenceCollection ^ Groups { System::Security::Principal::IdentityReferenceCollection ^ get(); };
public System.Security.Principal.IdentityReferenceCollection Groups { get; }
public System.Security.Principal.IdentityReferenceCollection? Groups { get; }
member this.Groups : System.Security.Principal.IdentityReferenceCollection
Public ReadOnly Property Groups As IdentityReferenceCollection

Wartość właściwości

IdentityReferenceCollection

Obiekt reprezentujący grupy, do których należy Windows użytkownik.

Przykłady

Poniższy przykład kodu przedstawia użycie właściwości w celu wyświetlenia odwołań do tożsamości dla Groups grup, do których należy bieżący użytkownik. Ten przykład kodu jest częścią większego przykładu dostarczonego dla WindowsIdentity klasy .

// Display the SIDs for the groups the current user belongs to.
Console.WriteLine("Display the SIDs for the groups the current user belongs to.");
IdentityReferenceCollection irc = windowsIdentity.Groups;
foreach (IdentityReference ir in irc)
    Console.WriteLine(ir.Value);
' Display the SIDs for the groups the current user belongs to.
Console.WriteLine("Display the SIDs for the groups the current user belongs to.")
Dim irc As IdentityReferenceCollection
Dim ir As IdentityReference
irc = windowsIdentity.Groups
For Each ir In irc
    Console.WriteLine(ir.Value)
Next

Dotyczy