コード例 #1
0
        private void HandleTimer()
        {
            TimerBuilder current = timerBuilder;

            if (current != null)
            {
                dataExchangeAPIClient.AddEntry(current.Stop());
            }
        }
コード例 #2
0
        private void HandleTimer()
        {
            TimerBuilder current = timerBuilder;

            if (current != null && this._dataExchangeClient != null)
            {
                try
                {
                    this._dataExchangeClient.AddEntry(current.Stop());
                }
                catch (Exception e)
                {
                    throw e;
                }
            }
        }