Install a system license.
Syntax

[C#]

static void InstallSystemLicense(string key);

[Visual Basic]

Shared Sub InstallSystemLicense(key As String)
Notes

You are unlikely ever to need to call this method as it is for internal use. In general you should be using one of the other license installation methods unless specifically advised otherwise.

Use this method to install a system license. Call this method at application startup before any ImageGlue objects have been created.

This method writes to the registry. The license will be available to all processes using ImageGlue. The license installed with 32-bit ImageGlue will not be available to 64-bit ImageGlue, and vice versa.

If the license could not be installed then an exception will be raised. The most common reason for this is that the license key is invalid.

See Also

LicenseDescription

InstallRedistributionLicense

InstallTrialLicense

Example

None.