GetActivatedSystems

Description

Gets information about all the activations of a specific activation key

 ILicenseInfo[] GetActivatedSystems(string webServiceUrl, 
                                    string activationKey, 
                                    out string message)

Parameters

Return

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