Install a license.
Syntax

[C#]

static bool InstallLicense(string inKey);

[Visual Basic]

Shared Function InstallLicense(inKey As String) As Boolean
Params
Name Description
return True if a license is installed, otherwise false.
Notes

Use this method to install a 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.

See Also

LicenseDescription

InstallTrialLicense

InstallRedistributionLicense

Example

None.