Class NSCredentialsGroupUsers
The users within a user group.
Syntax
Constructors
NSCredentialsGroupUsers()
Initializes a new instance of the NSCredentialsGroupUsers class.
Declaration
NSCredentialsGroupUsers
Methods
GetHeadings()
The users within a user group.
Declaration
String[] GetHeadings()
Returns
Type | Description |
---|---|
String[] | Headings in which to list the different users. |
Examples
NSCredentialsGroupUsers thing;
String[] headings = thing.GetHeadings();
GetUsers()
The users within a user group.
Declaration
NSCredentialUser[] GetUsers()
Returns
Type | Description |
---|---|
NSCredentialUser[] | The list of actual users that can be selected. |
Examples
NSCredentialsGroupUsers thing;
NSCredentialUser[] users = thing.GetUsers();
SetHeadings(String[])
The users within a user group.
Declaration
Void SetHeadings(String[] headings)
Parameters
Type | Name | Description |
---|---|---|
String[] | headings | Headings in which to list the different users. |
Returns
Type | Description |
---|---|
Void |
Examples
NSCredentialsGroupUsers thing;
String[] headings;
thing.SetHeadings(headings);
SetUsers(NSCredentialUser[])
The users within a user group.
Declaration
Void SetUsers(NSCredentialUser[] users)
Parameters
Type | Name | Description |
---|---|---|
NSCredentialUser[] | users | The list of actual users that can be selected. |
Returns
Type | Description |
---|---|
Void |
Examples
NSCredentialsGroupUsers thing;
NSCredentialUser[] users;
thing.SetUsers(users);