Microsoft.VisualStudio.Language.Spellchecker.SpellingDictionaryService.RaiseSpellingChangedEvent C# (CSharp) Method

RaiseSpellingChangedEvent() private method

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