Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
AttributeSet.cs
Go to the documentation of this file.
1using System.Text;
3
4namespace System.Xml.Xsl.Xslt;
5
6internal sealed class AttributeSet : ProtoTemplate
7{
9
14
15 public override string GetDebugName()
16 {
18 stringBuilder.Append("<xsl:attribute-set name=\"");
20 stringBuilder.Append("\">");
21 return stringBuilder.ToString();
22 }
23
24 public new void AddContent(XslNode node)
25 {
26 base.AddContent(node);
27 }
28
30 {
31 InsertContent(other.Content);
32 }
33}
void MergeContent(AttributeSet other)
AttributeSet(QilName name, XslVersion xslVer)
new void AddContent(XslNode node)
void InsertContent(IEnumerable< XslNode > collection)
Definition XslNode.cs:67
readonly QilName Name
Definition XslNode.cs:14