Exemplo n.º 1
0
        public void CheckProgramState(string ProductID, string SerialNumberIn,
                                      string RegSerialField, string ProductName, out Boolean AllowRun, out Boolean IsRegistered)
        {
            bool allowRun, isRegistered;

            OnlineAuthorization.CheckProgramState(ProductID, SerialNumberIn,
                                                  RegSerialField, ProductName, out allowRun, out isRegistered);
            AllowRun     = allowRun;
            IsRegistered = isRegistered;
        }
Exemplo n.º 2
0
 public bool CheckConnection(int timeout)
 {
     return(OnlineAuthorization.CheckConnection(timeout));
 }