With the User License (Platinum) deployment model, a single License Key is generated for each ImageGear-based solution and is used to initialize the ImageGear for Silverlight core component using the ImageGear product licensing API. No further actions are required to license your application on the end user's system. The User model includes both concurrent user and named user methods. Distribution is per Accusoft's agreement for quarterly reporting (LDR).
With the User License model, no Licensing Component is required. Accusoft will email the necessary parameters to you: Solution Name, Solution Key and License Key for the deployment of your application. Using these parameters, you can then modify the code of your application to specify the Solution Name, Solution Key, and License Key using the following ImageGear API:
![]() |
When you are ready to deploy your ImageGear-based application, you need to remove the call to ImGearLicense.SetService Method() from your application. When ImageGear is being licensed for deployment it is important that the call to ImGearLicense.SetOEMLicenseKey Method be made before all other licensing calls. This specifies to ImageGear that it is using OEM based licensing and not a licensing webservice. |
To specify the Solution Name, you call ImGearLicense.SetSolutionName Method.
![]() |
When you are deploying your ImageGear-based application, you need to replace the generic solution name that you have used with the ImageGear evaluation and development licenses with the unique solution name assigned to your application by Accusoft. |
To specify the Solution Key, you call ImGearLicense.SetSolutionKey Method.
To specify the License Key for your application, you call ImGearLicense.SetOEMLicenseKey Method.
C# .NET | ![]() |
---|---|
ImGearLicense.SetOEMLicenseKey("1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation..."); // Set Solution Name after OEM License Key to avoid connection attempts to licensing service. ImGearLicense.SetSolutionName("YourSolutionName"); ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345); |
VB .NET | ![]() |
---|---|
ImGearLicense.SetOEMLicenseKey("1.0.AStringForOEMLicensingContactAccusoftSalesForMoreInformation...") ' Set Solution Name after OEM License Key to avoid connection attempts to licensing service. ImGearLicense.SetSolutionName("YourSolutionName") ImGearLicense.SetSolutionKey(12345, 12345, 12345, 12345) |