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

RaiseSpellingChangedEvent() private méthode

private RaiseSpellingChangedEvent ( string word ) : void
word string
Résultat void
        void RaiseSpellingChangedEvent(string word)
        {
            var temp = DictionaryUpdated;
            if (temp != null)
                DictionaryUpdated(this, new SpellingEventArgs(word));
        }