Show / Hide Table of Contents

Class NSCheckLicenseStatusResult

Result of NSCheckLicenseStatus.

Syntax

Constructors

NSCheckLicenseStatusResult()

Initializes a new instance of the NSCheckLicenseStatusResult class.

Declaration
NSCheckLicenseStatusResult

Methods

GetLicenseStatus()

Result of NSCheckLicenseStatus.

Declaration
Integer GetLicenseStatus()
Returns
Type Description
Integer

See LicenseStatus.

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

GetMessage()

Result of NSCheckLicenseStatus.

Declaration
String GetMessage()
Returns
Type Description
String

Message to display in SOADMIN if LinkType=90.

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

GetUrl()

Result of NSCheckLicenseStatus.

Declaration
String GetUrl()
Returns
Type Description
String

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

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

SetLicenseStatus(Integer)

Result of NSCheckLicenseStatus.

Declaration
Void SetLicenseStatus(Integer licenseStatus)
Parameters
Type Name Description
Integer licenseStatus

Result of CheckLicenseStatus. See LicenseStatus.

Returns
Type Description
Void
Examples
NSCheckLicenseStatusResult thing;
Integer licenseStatus;
thing.SetLicenseStatus(licenseStatus);

SetMessage(String)

Result of NSCheckLicenseStatus.

Declaration
Void SetMessage(String message)
Parameters
Type Name Description
String message

Message to display in SOADMIN if LinkType=90.

Returns
Type Description
Void
Examples
NSCheckLicenseStatusResult thing;
String message;
thing.SetMessage(message);

SetUrl(String)

Result of NSCheckLicenseStatus.

Declaration
Void SetUrl(String url)
Parameters
Type Name Description
String url

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

Returns
Type Description
Void
Examples
NSCheckLicenseStatusResult thing;
String url;
thing.SetUrl(url);
In This Article
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top