Class NSLicenseResult
Carrier object for LicenseResult.
Syntax
Constructors
NSLicenseResult()
Initializes a new instance of the NSLicenseResult class.
Declaration
NSLicenseResult
Methods
GetReason()
Carrier object for LicenseResult.
Declaration
String GetReason()
Returns
Type | Description |
---|---|
String |
Examples
NSLicenseResult thing;
String reason = thing.GetReason();
GetSucceeded()
Carrier object for LicenseResult.
Declaration
Bool GetSucceeded()
Returns
Type | Description |
---|---|
Bool |
Examples
NSLicenseResult thing;
Bool succeeded = thing.GetSucceeded();
SetReason(String)
Carrier object for LicenseResult.
Declaration
Void SetReason(String reason)
Parameters
Type | Name | Description |
---|---|---|
String | reason |
Returns
Type | Description |
---|---|
Void |
Examples
NSLicenseResult thing;
String reason;
thing.SetReason(reason);
SetSucceeded(Bool)
Carrier object for LicenseResult.
Declaration
Void SetSucceeded(Bool succeeded)
Parameters
Type | Name | Description |
---|---|---|
Bool | succeeded |
Returns
Type | Description |
---|---|
Void |
Examples
NSLicenseResult thing;
Bool succeeded;
thing.SetSucceeded(succeeded);