Table of contents
Swift
Objective-C

DBRServerLicenseVerificationDelegate

DBRServerLicenseVerificationDelegate is the interface to handle license verification callback when using initWithLicenseFromServer.

Note:

  • initWithLicenseFromServer and DBRServerLicenseVerificationDelegate are deprecated and will be removed in 10.0 version release.
  • Please use initLicense and DBRLicenseVerificationListener to 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.

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: