DBRServerLicenseVerificationDelegate
DBRServerLicenseVerificationDelegate is the interface to handle license verification callback when using initWithLicenseFromServer.
Note:
initWithLicenseFromServerandDBRServerLicenseVerificationDelegateare deprecated and will be removed in 10.0 version release.- Please use
initLicenseandDBRLicenseVerificationListenerto initialize and verify the license for 9.x versions.
@protocol DBRServerLicenseVerificationDelegate <NSObject>
| Method | Type | Description |
|---|---|---|
licenseVerificationCallback |
required | The method for users to add code for license verification. |
licenseVerificationCallback
The method for users to add code for license verification.
@required
- (void)licenseVerificationCallback:(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.