Microsoft.VisualStudio.Language.Spellchecker.SpellingDictionaryService.ShouldIgnoreWord C# (CSharp) Méthode

ShouldIgnoreWord() public méthode

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

            return _globalDictionary.ShouldIgnoreWord(word);
        }