Microsoft.VisualStudio.Language.Spellchecker.SpellingDictionaryService.ShouldIgnoreWord C# (CSharp) Method

ShouldIgnoreWord() public method

public ShouldIgnoreWord ( string word ) : bool
word string
return bool
        public bool ShouldIgnoreWord(string word)
        {
            foreach (var dictionary in _bufferSpecificDictionaries)
            {
                if (dictionary.ShouldIgnoreWord(word))
                    return true;
            }

            return _globalDictionary.ShouldIgnoreWord(word);
        }