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