AbortGesture() public method

public AbortGesture ( ) : void
return void
        public void AbortGesture()
        {
            if (IsAborted || IsCompleted)
            {
                return;
            }

            IsAborted = true;
            _timer.Stop();
            firstTap.AbortGesture();
            secondTap.AbortGesture();

            OnGestureAborted();
        }