License Class

Contains properties providing information about the registered license.

Namespace: Aurigma.GraphicsMill.Licensing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public sealed class License : License, IDisposable

Remarks

Read this class properties to get the license information concerning your Graphics Mill assembly.

This class is accessible via the static property License.Current.

Examples

C#
var info = License.Current;
if (info.IsTrial)
{
    Console.WriteLine("Evaluation period expires on " + info.ExpirationDate.ToString());
}
else
{
    Console.WriteLine("Maintenance period expires on " + info.MaintenanceExpirationDate.ToString());
}

Inheritance Hierarchy

System.Object
L System.ComponentModel.License
L Aurigma.GraphicsMill.Licensing.License

Thread Safety

Static members of this type are not safe for multi-threaded operations. Instance members of this type are not safe for multi-threaded operations.

See Also

Reference

Manual