Class NSCredentialType
Description of credential type
Constructors
NSCredentialType()
Initializes a new instance of the NSCredentialType class.
Declaration
NSCredentialType Methods
GetCanCreatePerson()
Declaration
Bool GetCanCreatePerson() Examples
NSCredentialType thing;
Bool canCreatePerson = thing.GetCanCreatePerson();
Returns
| Type | Description |
| Bool |
GetDescription()
Declaration
String GetDescription() Examples
NSCredentialType thing;
String description = thing.GetDescription();
Returns
| Type | Description |
| String | Description of the authentication type. |
GetDisplayType()
Declaration
String GetDisplayType() Examples
NSCredentialType thing;
String displayType = thing.GetDisplayType();
Returns
| Type | Description |
| String | The name of the credentials to be displayed in the user interface. |
GetIsUserNameSupported()
Declaration
Bool GetIsUserNameSupported() Examples
NSCredentialType thing;
Bool isUserNameSupported = thing.GetIsUserNameSupported();
Returns
| Type | Description |
| Bool |
GetType()
Declaration
String GetType() Examples
NSCredentialType thing;
String type = thing.GetType();
Returns
| Type | Description |
| String | Type of credentials, corresponding to name of plugin and type in the credentials table. |
GetValueControl()
Declaration
Integer GetValueControl() Examples
NSCredentialType thing;
Integer valueControl = thing.GetValueControl();
Returns
| Type | Description |
| Integer | Type of control used to display the value. See <xref href="CRMScript.NetServer.CredentialControlType" data-throw-if-not-resolved="false"></xref>. |
SetCanCreatePerson(Bool)
Declaration
Void SetCanCreatePerson(Bool canCreatePerson) Examples
NSCredentialType thing;
Bool canCreatePerson;
thing.SetCanCreatePerson(canCreatePerson);
Parameters
| Type | Name | Description |
| Bool | canCreatePerson |
Returns
| Type | Description |
| Void |
SetDescription(String)
Declaration
Void SetDescription(String description) Examples
NSCredentialType thing;
String description;
thing.SetDescription(description);
Parameters
| Type | Name | Description |
| String | description | Description of the authentication type. |
Returns
| Type | Description |
| Void |
SetDisplayType(String)
Declaration
Void SetDisplayType(String displayType) Examples
NSCredentialType thing;
String displayType;
thing.SetDisplayType(displayType);
Parameters
| Type | Name | Description |
| String | displayType | The name of the credentials to be displayed in the user interface. |
Returns
| Type | Description |
| Void |
SetIsUserNameSupported(Bool)
Declaration
Void SetIsUserNameSupported(Bool isUserNameSupported) Examples
NSCredentialType thing;
Bool isUserNameSupported;
thing.SetIsUserNameSupported(isUserNameSupported);
Parameters
| Type | Name | Description |
| Bool | isUserNameSupported |
Returns
| Type | Description |
| Void |
SetType(String)
Declaration
Void SetType(String type) Examples
NSCredentialType thing;
String type;
thing.SetType(type);
Parameters
| Type | Name | Description |
| String | type | Type of credentials, corresponding to name of plugin and type in the credentials table. |
Returns
| Type | Description |
| Void |
SetValueControl(Integer)
Declaration
Void SetValueControl(Integer valueControl) Examples
NSCredentialType thing;
Integer valueControl;
thing.SetValueControl(valueControl);
Parameters
| Type | Name | Description |
| Integer | valueControl | Type of control used to display the value. See <xref href="CRMScript.NetServer.CredentialControlType" data-throw-if-not-resolved="false"></xref>. |
Returns
| Type | Description |
| Void |