Emoji.Intellisense.CommandFilter.Filter C# (CSharp) Метод

Filter() приватный Метод

Narrow down the list of options as the user types input
private Filter ( ) : void
Результат void
        private void Filter()
        {
            if (_currentSession == null)
                return;

            _currentSession.SelectedCompletionSet.SelectBestMatch();
            _currentSession.SelectedCompletionSet.Recalculate();
        }