Emoji.Intellisense.CommandFilter.Cancel C# (CSharp) Method

Cancel() private method

Cancel the auto-complete session, and leave the text unmodified
private Cancel ( ) : bool
return bool
        bool Cancel()
        {
            if (_currentSession == null)
                return false;

            _currentSession.Dismiss();

            return true;
        }