DMDLSLicenseVerificationDelegate
DMDLSLicenseVerificationDelegate
is the protocol to handle license verification callback when using initLicenseFromDLS
.
Note:
initLicenseFromDLS
andDMDLSLicenseVerificationDelegate
are deprecated and will be removed in 10.0 version release.- Please use
initLicense
andDBRLicenseVerificationListener
to initialize and verify the license for 9.x versions.
@protocol DMDLSLicenseVerificationDelegate <NSObject>
Method | Type | Description |
---|---|---|
DLSLicenseVerificationCallback |
required | The method for users to add code for license verification. |
DLSLicenseVerificationCallback
The method for users to add code for license verification.
@required
- (void)DLSLicenseVerificationCallback:(bool)isSuccess error:(NSError * _Nullable)error;
Parameters
[in, out] isSuccess
: Whether the license verification was successful.
[in, out] error
: The error message from the license server.