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