1 write to _installedVoices
System.Speech (1)
Internal\Synthesis\VoiceSynthesis.cs (1)
66
_installedVoices
= new List<InstalledVoice>(s_allVoices.Count);
8 references to _installedVoices
System.Speech (8)
Internal\Synthesis\VoiceSynthesis.cs (8)
69
_installedVoices
.Add(new InstalledVoice(this, installedVoice.VoiceInfo));
546
return new ReadOnlyCollection<InstalledVoice>(
_installedVoices
);
554
foreach (InstalledVoice voice in
_installedVoices
)
1114
viDefault = InstalledVoice.Find(
_installedVoices
, defaultVoice != null ? defaultVoice.VoiceInfo : defaultVoiceId!);
1127
while (voice == null &&
_installedVoices
.Count > 0)
1129
viDefault ??= InstalledVoice.FirstEnabled(
_installedVoices
, CultureInfo.CurrentUICulture);
1158
foreach (InstalledVoice sysVoice in
_installedVoices
)
1189
List<InstalledVoice> tokens = new(
_installedVoices
);