Interface ILicensingListener
Listener interface of the LicenseCheck API.
Namespace: UnityEngine.UDP
Assembly: UDP.dll
Syntax
public interface ILicensingListener
Methods
allow(LicensingCode, string)
The current user is allowed to access the application.
Declaration
void allow(LicensingCode code, string message)
Parameters
Type | Name | Description |
---|---|---|
LicensingCode | code | |
string | message |
applicationError(LicensingErrorCode, string)
An error occurred during LicenseCheck.
Declaration
void applicationError(LicensingErrorCode errorCode, string message)
Parameters
Type | Name | Description |
---|---|---|
LicensingErrorCode | errorCode | |
string | message |
dontAllow(LicensingCode, string)
The current user is not allowed to access the application.
Declaration
void dontAllow(LicensingCode code, string message)
Parameters
Type | Name | Description |
---|---|---|
LicensingCode | code | |
string | message |