GetActivatedSystems
Description
ILicenseInfo[] GetActivatedSystems(string webServiceUrl,
string activationKey,
out string message)Parameters
Parameter
Type
Description
Return
Type
Description
Example
private void GetActivatedSystems ()
{
string message;
ILicenseInfo[] activatedSystems = lv.QlmLicenseObject.GetActivatedSystems(string.Empty, lv.ActivationKey, out message);
if (activatedSystems!= null)
{
foreach (ILicenseInfo ai in activatedSystems)
{
Console.WriteLine(String.Format("License {0} is activated on {1} with ComputerKey {2}", ai.ActivationKey, ai.ComputerID, ai.ComputerKey));
}
}
}Last updated