コード例 #1
0
 private void TimeOutMonitor(object sender, System.Timers.ElapsedEventArgs e)
 {
     if (TimeOutReport != null)
     {
         TimeOutReport.On_Transaction_TimeOut(this);
     }
 }
コード例 #2
0
 private void TimeOutMonitor(object sender, System.Timers.ElapsedEventArgs e)
 {
     SetTimeOutMonitor(false);
     if (TimeOutReport != null)
     {
         if (ByPassTimeout)
         {
             TimeOutReport.On_Transaction_BypassTimeOut(this);
         }
         else
         {
             TimeOutReport.On_Transaction_TimeOut(this);
         }
     }
 }