在C#中执行我的应用程序时,仍未检查来自IntelliLock应用程序的许可

时间:2018-12-29 06:29:02

标签: c#

我正在使用Intellilock软件为我的C#应用​​程序创建许可证文件。

             if (mySetting.AppFunction.GetLicenseStatus() == "2")
                {
                    this.lblApplicationType.Text = "Valid Before: " + OEM.GetCurrentOEM().DueDate.ToLongDateString();
                    if (DateTime.Now.Date >= OEM.GetCurrentOEM().DueDate)
                    {
                        AppMessage.ShowMessage("License expired. Please contact administrator.");
                    }
                    else
                    {
                       AppMessage.ShowMessage("Welcome"); 
                    }
               }

这是我遇到问题的代码。 mySetting.AppFunction.GetLicenseStatus()1st 返回无值。因此我的检查未正确执行。我正在使用intellilock.dll进行验证。请帮我解决这个问题。

0 个答案:

没有答案