Ejemplo n.º 1
0
        /// <summary>
        /// Prompts the users if their trial license has expired
        /// </summary>
        public static bool PromptUserForLicense()
        {
            if (instance == null)
            {
                instance = new LicenseManager();
            }

            return(instance.PromptUserForLicenseInternal());
        }
Ejemplo n.º 2
0
        /// <summary>
        /// Prompts the users if their trial license has expired
        /// </summary>
        public static bool PromptUserForLicense()
        {
            if (instance == null)
                instance = new LicenseManager();

            return instance.PromptUserForLicenseInternal();
        }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes the licensing system with the given license
 /// </summary>
 /// <param name="licenseText"></param>
 public static void Parse(string licenseText)
 {
     instance = new LicenseManager(licenseText);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes the licensing system with the given license
 /// </summary>
 /// <param name="licenseText"></param>
 public static void Parse(string licenseText)
 {
     instance = new LicenseManager(licenseText);
 }