Class NSCheckLicenseStatusResult

Result of NSCheckLicenseStatus.

Constructors

NSCheckLicenseStatusResult()

Initializes a new instance of the NSCheckLicenseStatusResult class.

Declaration

NSCheckLicenseStatusResult

Methods

GetLicenseStatus()

Declaration

Integer GetLicenseStatus()

Examples

NSCheckLicenseStatusResult thing;
Integer licenseStatus = thing.GetLicenseStatus();

Returns

Type Description
Integer See <xref href="CRMScript.NetServer.LicenseStatus" data-throw-if-not-resolved="false"></xref>.

GetMessage()

Declaration

String GetMessage()

Examples

NSCheckLicenseStatusResult thing;
String message = thing.GetMessage();

Returns

Type Description
String Message to display in SOADMIN if LinkType=90.

GetUrl()

Declaration

String GetUrl()

Examples

NSCheckLicenseStatusResult thing;
String url = thing.GetUrl();

Returns

Type Description
String URL to show to the user. This is relevant when LinkType is 60.

SetLicenseStatus(Integer)

Declaration

Void SetLicenseStatus(Integer licenseStatus)

Examples

NSCheckLicenseStatusResult thing;
Integer licenseStatus;
thing.SetLicenseStatus(licenseStatus);

Parameters

Type Name Description
Integer licenseStatus Result of CheckLicenseStatus. See <xref href="CRMScript.NetServer.LicenseStatus" data-throw-if-not-resolved="false"></xref>.

Returns

Type Description
Void

SetMessage(String)

Declaration

Void SetMessage(String message)

Examples

NSCheckLicenseStatusResult thing;
String message;
thing.SetMessage(message);

Parameters

Type Name Description
String message Message to display in SOADMIN if LinkType=90.

Returns

Type Description
Void

SetUrl(String)

Declaration

Void SetUrl(String url)

Examples

NSCheckLicenseStatusResult thing;
String url;
thing.SetUrl(url);

Parameters

Type Name Description
String url URL to show to the user. This is relevant when LinkType is 60.

Returns

Type Description
Void