9 references to VoiceInfo
System.Speech (9)
Internal\Synthesis\TTSVoice.cs (3)
30return obj is TTSVoice voice && (_voiceId.Equals(voice.VoiceInfo)); 77if (VoiceInfo.SupportedAudioFormats?.Count > 0) 80targetWaveFormat = VoiceInfo.SupportedAudioFormats[0].WaveFormat;
Internal\Synthesis\VoiceSynthesis.cs (3)
862if (voice != null && (currentVoiceId == null || !currentVoiceId.Equals(voice.VoiceInfo))) 864currentVoiceId = voice.VoiceInfo; 1114viDefault = InstalledVoice.Find(_installedVoices, defaultVoice != null ? defaultVoice.VoiceInfo : defaultVoiceId!);
Synthesis\InstalledVoice.cs (1)
107if (_voice.Equals(_voiceSynthesizer.CurrentVoice(switchContext).VoiceInfo))
Synthesis\SpeechSynthesizer.cs (2)
40if (ttsVoice == null || name != ttsVoice.VoiceInfo.Name) 444return VoiceSynthesizer.CurrentVoice(true).VoiceInfo;