2 instantiations of SpeechEvent
System.Speech (2)
Internal\SapiInterop\SpeechEvent.cs (2)
103
speechEvent = new
SpeechEvent
(sapiEventEx);
112
speechEvent = new
SpeechEvent
(sapiEvent, audioFormat);
12 references to SpeechEvent
System.Speech (12)
Internal\SapiInterop\EventNotify.cs (3)
82
List<
SpeechEvent
> speechEvents = new();
83
SpeechEvent
? speechEvent;
84
while (null != (speechEvent =
SpeechEvent
.TryCreateSpeechEvent(sapiEventSource, _additionalSapiFeatures, _audioFormat)))
Internal\SapiInterop\SpeechEvent.cs (2)
93
internal static
SpeechEvent
? TryCreateSpeechEvent(ISpEventSource sapiEventSource, bool additionalSapiFeatures, SpeechAudioFormatInfo? audioFormat)
96
SpeechEvent
? speechEvent = null;
Recognition\RecognizerBase.cs (7)
2106
if (!_disposed && eventData is
SpeechEvent
speechEvent)
2184
private void ProcessPhraseStartEvent(
SpeechEvent
speechEvent)
2223
private void ProcessBookmarkEvent(
SpeechEvent
speechEvent)
2275
private void ProcessHypothesisEvent(
SpeechEvent
speechEvent)
2298
private void ProcessRecognitionEvent(
SpeechEvent
speechEvent)
2418
private void ProcessEndStreamEvent(
SpeechEvent
speechEvent)
2521
private RecognitionResult CreateRecognitionResult(
SpeechEvent
speechEvent)