using BiosenDongle; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XHandler.Class { /// /// 系统是否授权 /// public class IsAuthority { /// /// 是否授权 /// /// public static bool IsAuthorityDog() { //return true; #region 验证加密狗是否有 bool dogIsLogin = DongleBase.Login(); return dogIsLogin; #endregion } } }