Install a redistribution license.
Syntax

[C#]

static void InstallRedistributionLicense(string key);

[Visual Basic]

Shared Sub InstallRedistributionLicense(key As String)
Notes

Use this method to install a redistribution license. Call this method at application startup before any ImageGlue objects have been created. You only need to call this method once though calling it additional times will not cause problems.

This method does not write to the registry. The license will remain available to the process (or application pool) until it unloads.

Only purchased licenses can be installed using this method. Use InstallTrialLicense for trial licenses.

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

InstallLicense

InstallTrialLicense

Example

None.