18 references to ISpellChecker
PresentationFramework (18)
System\Windows\Documents\MsSpellCheckLib\RCW.cs (3)
179void Invoke([In, MarshalAs(UnmanagedType.Interface)] ISpellChecker sender); 275ISpellChecker CreateSpellChecker([In, MarshalAs(UnmanagedType.LPWStr)] string languageTag); 306public virtual extern ISpellChecker CreateSpellChecker([In, MarshalAs(UnmanagedType.LPWStr)] string languageTag);
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellChecker.cs (3)
20using ISpellChecker = RCW.ISpellChecker; 49_speller = new ChangeNotifyWrapper<ISpellChecker>(); 652private ChangeNotifyWrapper<ISpellChecker> _speller;
System\Windows\Documents\MsSpellCheckLib\SpellChecker\SpellCheckerChangedEventHandler.cs (2)
18using ISpellChecker = RCW.ISpellChecker; 50public void Invoke(ISpellChecker sender)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerCreationHelper.cs (2)
95public RCW.ISpellChecker CreateSpellChecker() 107public bool CreateSpellCheckerRetryPreamble(out Func<RCW.ISpellChecker> func)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (8)
25using ISpellChecker = RCW.ISpellChecker; 278private ISpellChecker CreateSpellCheckerImpl(string languageTag) 283private ISpellChecker CreateSpellCheckerImplWithRetries(string languageTag, bool suppressCOMExceptions = true) 285ISpellChecker spellChecker = null; 288RetryHelper.TryExecuteFunction<ISpellChecker>( 298private ISpellChecker CreateSpellCheckerPrivate(string languageTag, bool suppressCOMExceptions = true) 300ISpellChecker spellChecker = null; 307internal static ISpellChecker CreateSpellChecker(string languageTag, bool suppressCOMExceptions = true)