WindowsIdentity.Groups Свойство

Определение

Возвращает группы, к которой принадлежит текущий пользователь Windows.

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

Значение свойства

Объект, представляющий группы, к которой принадлежит текущий пользователь Windows.

Примеры

В следующем примере кода показано использование Groups свойства для отображения ссылок на удостоверения для групп, к которому принадлежит текущий пользователь. Этот пример кода является частью более крупного примера, предоставленного для WindowsIdentity класса.

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

Применяется к