コード例 #1
0
ファイル: Cstation.cs プロジェクト: damaro05/JenkingsTest
        public async void stopStationContinuousMode()
        {
            try
            {
                // Stopping station continuous mode queue
                //Debug.Print("stopStationContinuousMode")
                if (uiContModeQueueID != UInt32.MaxValue)
                {
                    await jbc.StopContinuousModeAsync((long)ID, uiContModeQueueID);

                    uiContModeQueueID = UInt32.MaxValue;
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Cstation::stopStationContinuousMode . error:" + ex.Message);
            }
        }