コード例 #1
0
 /**
  * Do a balance.
  */
 public void onBalance()
 {
     try
     {
         Debug.Log("CashmaticApp", "onBalance");
         setRequestInProgress(true);
         terminal.BalanceAsync();
     }
     catch (TimException e)
     {
         setRequestInProgress(false);
         Debug.Log("CashmaticApp", e.ToString());
         OnTransactionError(e);
     }
 }