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.
Syntax
Constructors
NSCredentialsGroup()
Initializes a new instance of the NSCredentialsGroup class.
Declaration
NSCredentialsGroup
Methods
GetDisplayName()
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.
Declaration
String GetDisplayName()
Returns
Type | Description |
---|---|
String | The display name of the group to display to the user. |
Examples
NSCredentialsGroup thing;
String displayName = thing.GetDisplayName();
GetName()
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.
Declaration
String GetName()
Returns
Type | Description |
---|---|
String | The full name of the group as needed to discover the users within the group. |
Remarks
This value should not be displayed to the end user!
Examples
NSCredentialsGroup thing;
String name = thing.GetName();
SetDisplayName(String)
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.
Declaration
Void SetDisplayName(String displayName)
Parameters
Type | Name | Description |
---|---|---|
String | displayName | The display name of the group to display to the user. |
Returns
Type | Description |
---|---|
Void |
Examples
NSCredentialsGroup thing;
String displayName;
thing.SetDisplayName(displayName);
SetName(String)
n
Declaration
Void SetName(String name)
Parameters
Type | Name | Description |
---|---|---|
String | name | The full name of the group as needed to discover the users within the group. |
Returns
Type | Description |
---|---|
Void |
Remarks
This value should not be displayed to the end user.
Examples
NSCredentialsGroup thing;
String name;
thing.SetName(name);