ImageGear Professional v18.2 > User Guide > Installing, Licensing, and Distributing ImageGear > ImageGear Licensing > Runtime Licensing > Manually Reported Runtime (Non-Node-Locked) |
Manually Reported Runtime licensing embeds all of the licensing information directly into your application. Installation does not require any further licensing interaction. However, it is your responsibility to provide royalty reporting to Accusoft for the actual licenses deployed.
This section provides information about the following:
The solution name is
Copy Code
|
|
---|---|
IGCoreCtl1.License.SetSolutionName("ACMEImaging");
|
The Solution Name must be set in order to use runtime licensing.
The Solution Key is
Copy Code
|
|
---|---|
IGCoreCtl1.License.SetSolutionName("ACMEImaging");
IGCoreCtl1.License.SetSolutionKey(0x1C3A023F, 0xA018F260,
0x37AF0E51, 0x557F2389);
|
The Solution Key must be set in order to use runtime licensing.
The OEMLicense Key is
VB6 |
Copy Code
|
---|---|
IGCoreCtl1.License.SetSolutionName "ACMEImaging" IGCoreCtl1.License.SetSolutionKey &H1C3A023F, &HA018F260, &H37AF0E51, &H557F2389 IGCoreCtl1.License.SetOEMLicenseKey "2.0.GQCC0EmUgONaI4QDZ32tpGWfpGW4gtbC0iIC0iN4bigYM3m3K5b487QOsAM38O24mUp5bOpD2O240OQ32U2YsUKDKA87MYPGgGgaptMiK5Nv8AI4mYg4m3QvW52DZCPGs4p784mtP4IUgOWiIG0AQYp4052iIAWvNCZfpGWC8vQ5P4ZGKaPAWfbiYfZOI303pOZAgisiNaWA27gGsf8Ob7Zvm5IaKGI4KC8GsG2CWYpGQAg5sUmYWvZCQANig48G2ap4bG0DsO240YsUmtptNiZamCPGbYMfMO83gANAZCN52YbY8U8f8DM4m3g7MYMYWGW5Q7QGWaMiN7MtZfmtgY8AN7NDP7Z4W7sCbGKUPa0im7EDPP" |
C# |
Copy Code
|
---|---|
axIGCoreCtl1.License.SetSolutionName("ACMEImaging"); // "Unchecked" allows verbatim conversion of unsigned 32-bit values provided by the // Accusoft to signed values accepted by IGLicense.SetSolutionKey axIGCoreCtl1.License.SetSolutionKey(unchecked((int)0x1C3A023F), unchecked((int)0xA018F260), unchecked((int)0x37AF0E51), unchecked((int)0x557F2389)); axIGCoreCtl1.License.SetOEMLicenseKey("2.0.GQCC0EmUgONaI4QDZ32tpGWfpGW4gtbC0iIC0iN4bigYM3m3K5b487QOsAM38O24mUp5bOpD2O240OQ32U2YsUKDKA87MYPGgGgaptMiK5Nv8AI4mYg4m3QvW52DZCPGs4p784mtP4IUgOWiIG0AQYp4052iIAWvNCZfpGWC8vQ5P4ZGKaPAWfbiYfZOI303pOZAgisiNaWA27gGsf8Ob7Zvm5IaKGI4KC8GsG2CWYpGQAg5sUmYWvZCQANig48G2ap4bG0DsO240YsUmtptNiZamCPGbYMfMO83gANAZCN52YbY8U8f8DM4m3g7MYMYWGW5Q7QGWaMiN7MtZfmtgY8AN7NDP7Z4W7sCbGKUPa0im7EDPP"); |
This method is not required for Automatically Reported Runtime licensing.