ADL.NativeServiceListenerAdapter.on_connection_lost_callback_t C# (CSharp) Method

on_connection_lost_callback_t() private method

private on_connection_lost_callback_t ( IntPtr opaque, ADLConnectionLostEvent &e ) : void
opaque System.IntPtr
e ADLConnectionLostEvent
return void
        private void on_connection_lost_callback_t(IntPtr opaque,
            ref ADLConnectionLostEvent e)
        {
            try
            {
                if (_listener != null)
                    _listener.onConnectionLost(
                        ConnectionLostEvent.FromNative(e));
            }
            catch (Exception )
            {
            }
        }