Microsoft.VisualStudio.Language.Spellchecker.SpellingDictionaryService.RaiseSpellingChangedEvent C# (CSharp) Метод

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

private RaiseSpellingChangedEvent ( string word ) : void
word string
Результат void
        void RaiseSpellingChangedEvent(string word)
        {
            var temp = DictionaryUpdated;
            if (temp != null)
                DictionaryUpdated(this, new SpellingEventArgs(word));
        }