GroupPrincipal Constructors

Definition

Initializes a new instance of the GroupPrincipal class.

Overloads

GroupPrincipal(PrincipalContext)

Initializes a new instance of the GroupPrincipal class by using the specified context.

GroupPrincipal(PrincipalContext, String)

Initializes a new instance of the GroupPrincipal class and assigns it to the specified context and SAM account name.

GroupPrincipal(PrincipalContext)

Initializes a new instance of the GroupPrincipal class by using the specified context.

public:
 GroupPrincipal(System::DirectoryServices::AccountManagement::PrincipalContext ^ context);
public GroupPrincipal (System.DirectoryServices.AccountManagement.PrincipalContext context);
new System.DirectoryServices.AccountManagement.GroupPrincipal : System.DirectoryServices.AccountManagement.PrincipalContext -> System.DirectoryServices.AccountManagement.GroupPrincipal
Public Sub New (context As PrincipalContext)

Parameters

context
PrincipalContext

The PrincipalContext that specifies the server or domain against which operations are performed.

Remarks

The group principal account is not persisted when it is created. To persist the account, call the Save method.

Applies to

GroupPrincipal(PrincipalContext, String)

Initializes a new instance of the GroupPrincipal class and assigns it to the specified context and SAM account name.

public:
 GroupPrincipal(System::DirectoryServices::AccountManagement::PrincipalContext ^ context, System::String ^ samAccountName);
public GroupPrincipal (System.DirectoryServices.AccountManagement.PrincipalContext context, string samAccountName);
new System.DirectoryServices.AccountManagement.GroupPrincipal : System.DirectoryServices.AccountManagement.PrincipalContext * string -> System.DirectoryServices.AccountManagement.GroupPrincipal
Public Sub New (context As PrincipalContext, samAccountName As String)

Parameters

context
PrincipalContext

The PrincipalContext that specifies the server or domain against which operations are performed.

samAccountName
String

The SAM account name for this principal.

Remarks

The group principal account is not persisted when it is created. To persist the account, call the Save method.

Applies to