2 implementations of ISpGrammarResourceLoader
System.Speech (2)
Recognition\RecognizerBase.cs (2)
22internal class RecognizerBase : IRecognizerInternal, IDisposable, ISpGrammarResourceLoader 3051private sealed class RecognizerBaseThunk : ISpGrammarResourceLoader
11 references to ISpGrammarResourceLoader
System.Speech (11)
Internal\SapiInterop\SapiGrammar.cs (1)
68internal void SetGrammarLoader(ISpGrammarResourceLoader resourceLoader)
Internal\SapiInterop\SapiRecoInterop.cs (1)
749void SetGrammarLoader(ISpGrammarResourceLoader pLoader);
Recognition\RecognizerBase.cs (9)
1482int ISpGrammarResourceLoader.LoadResource(string bstrResourceUri, bool fAlwaysReload, out IStream? pStream, ref string pbstrMIMEType, ref short pfModified, ref string pbstrRedirectUrl) 1555string? ISpGrammarResourceLoader.GetLocalCopy(Uri resourcePath, out string? mimeType, out Uri? redirectUrl) 1565void ISpGrammarResourceLoader.ReleaseLocalCopy(string path) 3071int ISpGrammarResourceLoader.LoadResource(string bstrResourceUri, bool fAlwaysReload, out IStream? pStream, ref string pbstrMIMEType, ref short pfModified, ref string pbstrRedirectUrl) 3073return ((ISpGrammarResourceLoader)Recognizer).LoadResource(bstrResourceUri, fAlwaysReload, out pStream, ref pbstrMIMEType, ref pfModified, ref pbstrRedirectUrl); 3079string? ISpGrammarResourceLoader.GetLocalCopy(Uri resourcePath, out string? mimeType, out Uri? redirectUrl) 3081return ((ISpGrammarResourceLoader)Recognizer).GetLocalCopy(resourcePath, out mimeType, out redirectUrl); 3087void ISpGrammarResourceLoader.ReleaseLocalCopy(string path) 3089((ISpGrammarResourceLoader)Recognizer).ReleaseLocalCopy(path);