Class NSLicenseResult

Carrier object for LicenseResult.

Constructors

NSLicenseResult()

Initializes a new instance of the NSLicenseResult class.

Declaration

NSLicenseResult

Methods

GetReason()

Declaration

String GetReason()

Examples

NSLicenseResult thing;
String reason = thing.GetReason();

Returns

Type Description
String

GetSucceeded()

Declaration

Bool GetSucceeded()

Examples

NSLicenseResult thing;
Bool succeeded = thing.GetSucceeded();

Returns

Type Description
Bool

SetReason(String)

Declaration

Void SetReason(String reason)

Examples

NSLicenseResult thing;
String reason;
thing.SetReason(reason);

Parameters

Type Name Description
String reason

Returns

Type Description
Void

SetSucceeded(Bool)

Declaration

Void SetSucceeded(Bool succeeded)

Examples

NSLicenseResult thing;
Bool succeeded;
thing.SetSucceeded(succeeded);

Parameters

Type Name Description
Bool succeeded

Returns

Type Description
Void