Last updated 1 year ago
Retrieves dashboard-type information related to the specified license key.
To use a proxy server, you must set the UseProxyServer, ProxyUser, ProxyDomain and ProxyPassword properties prior to calling this function.
IDashboardLicenseInfo GetDashboardLicenseInfo (string webServiceUrl, string activationKey, string computerKey, string computerID)
webServiceUrl
string
URL to the QLM License Server
activationKey
Activation Key
computerKey
Computer Key
computerID
Computer ID
IDashboardLicenseInfo
Dashboard information
QlmLicense license = new QlmLicense (); license.DefineProduct(1, "Demo", 1, 0, "DemoKey", "{24EAA3C1-3DD7-40E0-AEA3-D20AA17A6005}"); IDashboardLicenseInfo di = license.GetDashboardLicenseInfo ("https://qlm3.net/qlmdemo/qlmLicenseServer/qlmservice.asmx", "AXXX", "UXXX", Environment.MachineName); if (ret == true) { MessageBox.Show ("Total Licenses: " + di.TotalLicenses); }