Contains properties providing information about the registered license.
Namespace:
Aurigma.GraphicsMill.Licensing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public sealed class License : License, IDisposable
Read this class properties to get the license information concerning your Graphics Mill assembly.
This class is accessible via the static property License.Current.
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()); }