For my company app, we need to tell the client which kind of license he is using, if it is trial, if it is online or offline. We currently have the method GetLicenseType() in the LexActivator, but the information given is not enough for us, it just gives us the general type of the license, nothing as specific as we need. Am I using wrong or is it limited to simple information?
Thanks!
Augusto
Hey @AugustoMartins,
Thank you for reaching out.
The GetLicenseType() function returns the license type, such as node-locked or hosted-floating. In addition, you can use GetActivationMode(), which provides details on whether the license was activated in online or offline mode, including both the initial and current modes.
Regarding trials, could you please clarify your implementation approach? Specifically, are you using license keys for trials, or leveraging native trial activations?
Thanks for the hint on GetActivationMode() it was really useful. We are using native trials. We got everything we need, thanks!
1 Like