Class NSCredentialUser
Information about a users credentials in a foreign system that can be bound to a SuperOffice user (associate)
Constructors
NSCredentialUser()
Initializes a new instance of the NSCredentialUser class.
Declaration
NSCredentialUser Methods
GetCanCreatePerson()
Declaration
Bool GetCanCreatePerson() Examples
NSCredentialUser thing;
Bool canCreatePerson = thing.GetCanCreatePerson();
Returns
| Type | Description |
| Bool |
GetColumns()
Declaration
String[] GetColumns() Examples
NSCredentialUser thing;
String[] columns = thing.GetColumns();
Returns
| Type | Description |
| String[] | Columns, matching CredentialUsers.Headings. |
GetDisplayValue()
Declaration
String GetDisplayValue() Examples
NSCredentialUser thing;
String displayValue = thing.GetDisplayValue();
Returns
| Type | Description |
| String | Display value of the user. |
GetValue()
Declaration
String GetValue() Examples
NSCredentialUser thing;
String value = thing.GetValue();
Returns
| Type | Description |
| String | Identification of user in the foreign system. |
SetCanCreatePerson(Bool)
Declaration
Void SetCanCreatePerson(Bool canCreatePerson) Examples
NSCredentialUser thing;
Bool canCreatePerson;
thing.SetCanCreatePerson(canCreatePerson);
Parameters
| Type | Name | Description |
| Bool | canCreatePerson |
Returns
| Type | Description |
| Void |
SetColumns(String[])
Declaration
Void SetColumns(String[] columns) Examples
NSCredentialUser thing;
String[] columns;
thing.SetColumns(columns);
Parameters
| Type | Name | Description |
| String[] | columns | Columns, matching CredentialUsers.Headings. |
Returns
| Type | Description |
| Void |