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 license = Aurigma.GraphicsMill.Configuration.License; if (license.IsTrial) { Console.WriteLine("Evaluation period expires on " + license.ExpirationDate.ToString()); } else { Console.WriteLine("Maintenance period expires on " + license.MaintenanceExpirationDate.ToString()); }