Microsoft.VisualStudio.Language.Spellchecker.SpellingDictionaryService.ShouldIgnoreWord C# (CSharp) 메소드

ShouldIgnoreWord() 공개 메소드

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

            return _globalDictionary.ShouldIgnoreWord(word);
        }