private void OnPositionError(PositionErrorEventArgs e)
        {
            var handler = this.PositionError;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemple #2
0
        private void OnPositionError(PositionErrorEventArgs e)
        {
            var error = this.PositionError;

            if (error != null)
            {
                error(this, e);
            }
        }
        private void OnPositionError(PositionErrorEventArgs e)
        {
            this.StopListening();

            var error = this.PositionError;

            if (error != null)
            {
                error(this, e);
            }
        }
        private void OnListenerPositionError(object sender, PositionErrorEventArgs e)
        {
            this.StopListening();

            var error = this.PositionError;

            if (error != null)
            {
                error(this, e);
            }
        }