1 write to Singleton
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (1)
91Singleton = new SpellCheckerFactory();
12 references to Singleton
PresentationFramework (12)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerCreationHelper.cs (1)
61return SpellCheckerFactory.Singleton.ComFactory;
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (11)
76result = Singleton; 123if (Singleton.ComFactory != null) 127Marshal.ReleaseComObject(Singleton.ComFactory); 134Singleton.ComFactory = null; 173Singleton.ComFactory = result; 226return Singleton?.GetSupportedLanguagesPrivate(shouldSuppressCOMExceptions); 271return ((Singleton != null) && Singleton.IsSupportedPrivate(languageTag, suppressCOMExceptons)); 309return Singleton?.CreateSpellCheckerPrivate(languageTag, suppressCOMExceptions); 346Singleton?.RegisterUserDictionaryPrivate(dictionaryPath, languageTag, suppressCOMExceptions); 377Singleton?.UnregisterUserDictionaryPrivate(dictionaryPath, languageTag, suppressCOMExceptions);