/// <summary> /// Determines if the given word is ignored using case sensitive rules. /// </summary> /// <param name="word">The word to check.</param> /// <returns>True if the word is ignored.</returns> public bool IsIgnored(string word) { lock (_ignoredSync) { return(_ignored.Contains(word) || (null != _ignoreDictionaries && _ignoreDictionaries.Check(word))); } }