1 write to Singleton
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (1)
86Singleton = new SpellCheckerFactory();
12 references to Singleton
PresentationFramework (12)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerCreationHelper.cs (1)
58return SpellCheckerFactory.Singleton.ComFactory;
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (11)
71result = Singleton; 118if (Singleton.ComFactory != null) 122Marshal.ReleaseComObject(Singleton.ComFactory); 129Singleton.ComFactory = null; 168Singleton.ComFactory = result; 221return Singleton?.GetSupportedLanguagesPrivate(shouldSuppressCOMExceptions); 266return ((Singleton != null) && Singleton.IsSupportedPrivate(languageTag, suppressCOMExceptons)); 304return Singleton?.CreateSpellCheckerPrivate(languageTag, suppressCOMExceptions); 341Singleton?.RegisterUserDictionaryPrivate(dictionaryPath, languageTag, suppressCOMExceptions); 372Singleton?.UnregisterUserDictionaryPrivate(dictionaryPath, languageTag, suppressCOMExceptions);