Distinguish between a trial and a subscription
QLM v17+
QLM v9 to v16
// Assuming lv is an instance of the LicenseValidator class
string dataSet = string.Empty;
string response = string.Empty;
QlmLicenseLib.ILicenseInfo licenseInfo = lv.QlmLicenseObject.GetLicenseInfo(string.Empty,
lv.ActivationKey, false,
out dataSet, out response);
if (licenseInfo != null)
{
ELicenseModel licenseModel = licenseInfo.LicenseModel;
Console.WriteLine(licenseModel.ToString());
}PreviousHow to update the CommunicationEncryptionKey and AdminEncryptionKeyNextHow to get the activated computers for a given activation key
Last updated