1 write to Singleton
PresentationFramework (1)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (1)
87Singleton = new SpellCheckerFactory();
12 references to Singleton
PresentationFramework (12)
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerCreationHelper.cs (1)
59return SpellCheckerFactory.Singleton.ComFactory;
System\Windows\Documents\MsSpellCheckLib\SpellCheckerFactory\SpellCheckerFactory.cs (11)
72result = Singleton; 119if (Singleton.ComFactory != null) 123Marshal.ReleaseComObject(Singleton.ComFactory); 130Singleton.ComFactory = null; 169Singleton.ComFactory = result; 222return Singleton?.GetSupportedLanguagesPrivate(shouldSuppressCOMExceptions); 267return ((Singleton != null) && Singleton.IsSupportedPrivate(languageTag, suppressCOMExceptons)); 305return Singleton?.CreateSpellCheckerPrivate(languageTag, suppressCOMExceptions); 342Singleton?.RegisterUserDictionaryPrivate(dictionaryPath, languageTag, suppressCOMExceptions); 373Singleton?.UnregisterUserDictionaryPrivate(dictionaryPath, languageTag, suppressCOMExceptions);