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; }
public bool CheckConnection(int timeout) { return(OnlineAuthorization.CheckConnection(timeout)); }