Class NSCredentialsGroup
When the CredentialType's control is of type link, the user is selected from a source like active directory. This will then be the organisational unit (e.g. user security group) in active directory. Only one group is listed if the system does not support groups.
Constructors
NSCredentialsGroup()
Initializes a new instance of the NSCredentialsGroup class.
Declaration
NSCredentialsGroup Methods
GetDisplayName()
Declaration
String GetDisplayName() Examples
NSCredentialsGroup thing;
String displayName = thing.GetDisplayName();
Returns
| Type | Description |
| String | The display name of the group to display to the user. |
GetName()
Declaration
String GetName() Examples
NSCredentialsGroup thing;
String name = thing.GetName();
Returns
| Type | Description |
| String | The full name of the group as needed to discover the users within the group. |
SetDisplayName(String)
Declaration
Void SetDisplayName(String displayName) Examples
NSCredentialsGroup thing;
String displayName;
thing.SetDisplayName(displayName);
Parameters
| Type | Name | Description |
| String | displayName | The display name of the group to display to the user. |
Returns
| Type | Description |
| Void |