コード例 #1
0
        /// <summary>
        /// Event notification for completion of TT API shutdown
        /// </summary>
        private void ShutdownCompleted(object sender, EventArgs e)
        {
            // Shutdown the Dispatcher
            if (_disp != null)
            {
                _disp.InvokeShutdown();
                _disp = null;
            }

            ConnectionStatusEvent?.Invoke(this, "Connection_Down");

            // Dispose of any other objects / resources
        }