3 instantiations of Prosody
System.Speech (3)
Internal\Synthesis\SSmlParser.cs (1)
850Prosody prosody = ssmlAttributes._fragmentState.Prosody != null ? ssmlAttributes._fragmentState.Prosody.Clone() : new Prosody();
Internal\Synthesis\VoiceSynthesis.cs (1)
766fragmentState.Prosody = new Prosody();
Synthesis\TTSEngine\TTSEngineTypes.cs (1)
298Prosody cloned = new();
6 references to Prosody
System.Speech (6)
Internal\Synthesis\SSmlParser.cs (1)
850Prosody prosody = ssmlAttributes._fragmentState.Prosody != null ? ssmlAttributes._fragmentState.Prosody.Clone() : new Prosody();
Synthesis\TTSEngine\TTSEngineTypes.cs (5)
221[DisallowNull] public Prosody? Prosody { get { return _prosody; } internal set { ArgumentNullException.ThrowIfNull(value); _prosody = value; } } 228Prosody? prosody, 270private Prosody? _prosody; 296internal Prosody Clone() 298Prosody cloned = new();