5 instantiations of SsmlXmlAttribute
System.Speech (5)
Internal\Synthesis\SSmlParser.cs (5)
162ssmlAttributes._unknownNamespaces.Add(new SsmlXmlAttribute(reader.Prefix, reader.LocalName, reader.Value, reader.NamespaceURI)); 171extraSpeakAttributes.Add(new SsmlXmlAttribute(reader.Prefix, reader.LocalName, reader.Value, reader.NamespaceURI)); 1160SsmlXmlAttribute ns = new(reader.Prefix, reader.LocalName, reader.Value, reader.NamespaceURI); 1168extraAttributesVoice.Add(new SsmlXmlAttribute(reader.Prefix, reader.LocalName, reader.Value, reader.NamespaceURI)); 1859extraAttributes.Add(new SsmlXmlAttribute(reader.Prefix, reader.LocalName, reader.Value, reader.NamespaceURI));
50 references to SsmlXmlAttribute
System.Speech (50)
Internal\Synthesis\ISSmlParser.cs (4)
17object ProcessSpeak(string sVersion, string? sBaseUri, CultureInfo? culture, List<SsmlXmlAttribute> extraNamespace); 30object ProcessVoice(string? name, CultureInfo? culture, VoiceGender gender, VoiceAge age, int variant, bool fNewCulture, List<SsmlXmlAttribute>? extraNamespace); 36void StartProcessUnknownAttributes(object voice, ref FragmentState fragmentState, string? element, List<SsmlXmlAttribute> extraAttributes); 37void EndProcessUnknownAttributes(object voice, ref FragmentState fragmentState, string? element, List<SsmlXmlAttribute> extraAttributes);
Internal\Synthesis\SSmlParser.cs (34)
82SsmlAttributes ssmlAttributes = new(voice, new List<SsmlXmlAttribute>()); 90List<SsmlXmlAttribute> extraSpeakAttributes = new(); 191List<SsmlXmlAttribute>? extraAttributes = null; 192foreach (SsmlXmlAttribute attribute in extraSpeakAttributes) 217private static void ProcessElement(XmlReader reader, ISsmlParser engine, string? sElement, SsmlElement possibleElements, SsmlAttributes ssmAttributesParent, bool fIgnore, List<SsmlXmlAttribute>? extraAttributes) 300List<SsmlXmlAttribute>? extraAttributes = null; 361List<SsmlXmlAttribute>? extraAttributes = null; 436List<SsmlXmlAttribute>? extraAttributes = null; 492List<SsmlXmlAttribute>? extraAttributes = null; 552List<SsmlXmlAttribute>? extraAttributes = null; 649List<SsmlXmlAttribute>? extraAttributes = null; 717List<SsmlXmlAttribute>? extraAttributes = null; 839List<SsmlXmlAttribute>? extraAttributes = null; 922List<SsmlXmlAttribute>? extraAttributes = null; 991List<SsmlXmlAttribute>? extraAttributes = null; 1066List<SsmlXmlAttribute>? extraAttributes = null; 1067List<SsmlXmlAttribute>? extraAttributesVoice = null; 1068List<SsmlXmlAttribute>? localUnknownNamespaces = null; 1158localUnknownNamespaces ??= new List<SsmlXmlAttribute>(); 1160SsmlXmlAttribute ns = new(reader.Prefix, reader.LocalName, reader.Value, reader.NamespaceURI); 1167extraAttributesVoice ??= new List<SsmlXmlAttribute>(); 1181foreach (SsmlXmlAttribute attribute in extraAttributesVoice) 1205foreach (SsmlXmlAttribute ns in localUnknownNamespaces) 1222List<SsmlXmlAttribute>? extraAttributes = null; 1823public SsmlAttributes(object voice, List<SsmlXmlAttribute> unknownNamespaces) 1836internal List<SsmlXmlAttribute> _unknownNamespaces; 1838internal bool AddUnknowAttribute(SsmlXmlAttribute attribute, ref List<SsmlXmlAttribute>? extraAttributes) 1840foreach (SsmlXmlAttribute ns in _unknownNamespaces) 1844extraAttributes ??= new List<SsmlXmlAttribute>(); 1852internal bool AddUnknowAttribute(XmlReader reader, ref List<SsmlXmlAttribute>? extraAttributes) 1854foreach (SsmlXmlAttribute ns in _unknownNamespaces) 1858extraAttributes ??= new List<SsmlXmlAttribute>(); 1868foreach (SsmlXmlAttribute ns in _unknownNamespaces)
Internal\Synthesis\TextFragmentEngine.cs (5)
30public object ProcessSpeak(string sVersion, string? sBaseUri, CultureInfo? culture, List<SsmlXmlAttribute> extraNamespace) 173public object ProcessVoice(string? name, CultureInfo? culture, VoiceGender gender, VoiceAge age, int variant, bool fNewCulture, List<SsmlXmlAttribute>? extraNamespace) 195public void StartProcessUnknownAttributes(object voice, ref FragmentState fragmentState, string? element, List<SsmlXmlAttribute> extraAttributes) 199foreach (SsmlXmlAttribute attribute in extraAttributes) 208public void EndProcessUnknownAttributes(object voice, ref FragmentState fragmentState, string? element, List<SsmlXmlAttribute> extraAttributes)
Internal\Synthesis\TextWriterEngine.cs (7)
28public object ProcessSpeak(string sVersion, string? baseUri, CultureInfo? culture, List<SsmlXmlAttribute> extraNamespace) 44foreach (SsmlXmlAttribute ns in extraNamespace) 208public object ProcessVoice(string? name, CultureInfo? culture, VoiceGender gender, VoiceAge age, int variant, bool fNewCulture, List<SsmlXmlAttribute>? extraNamespace) 235foreach (SsmlXmlAttribute ns in extraNamespace) 271public void StartProcessUnknownAttributes(object? voice, ref FragmentState fragmentState, string? sElement, List<SsmlXmlAttribute> extraAttributes) 274foreach (SsmlXmlAttribute attribute in extraAttributes) 280public void EndProcessUnknownAttributes(object? voice, ref FragmentState fragmentState, string? sElement, List<SsmlXmlAttribute> extraAttributes)