private void OnListenerPositionError(object sender, PositionErrorEventArgs e)
        {
            StopListening();

            var error = ErrorOccured;

            if (error != null)
            {
                error(this, e);
            }
        }
Exemplo n.º 2
0
        private void OnPositionError(PositionErrorEventArgs e)
        {
            StopListening();

            var error = ErrorOccured;

            if (error != null)
            {
                error(this, e);
            }
        }
Exemplo n.º 3
0
 private void OnPositionError(PositionErrorEventArgs e)
 {
     PositionError?.Invoke(this, e);
 }
        private void OnListenerPositionError(object sender, PositionErrorEventArgs e)
        {
            StopListening();

            ErrorOccured?.Invoke(this, e);
        }
Exemplo n.º 5
0
        void OnPositionError(PositionErrorEventArgs e)
        {
            StopListening();

            ErrorOccured?.Invoke(this, e);
        }