Table of contents

DBRLicenseVerificationListener

DBRLicenseVerificationListener is the protocol to handle license verification callback when using initLicense.

  • Objective-C
  • Swift
  1. @protocol DBRLicenseVerificationListener <NSObject>
    
  2. protocol DBRLicenseVerificationListener : NSObjectProtocol
    
Method Type Description
DBRLicenseVerificationCallback required The method for users to add code for license verification.

DBRLicenseVerificationCallback

The method for users to add code for license verification.

  • Objective-C
  • Swift
  1. - (void)DBRLicenseVerificationCallback:(bool)isSuccess error:(NSError * _Nullable)error;
    
  2. func dbrLicenseVerificationCallback(_ isSuccess: Bool, error: 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: