terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ WriteDocType()

override void System.Xml.XmlUtf8RawTextWriter.WriteDocType ( string name,
string pubid,
string sysid,
string subset )
inline

Definition at line 105 of file XmlUtf8RawTextWriter.cs.

106 {
107 this.RawText("<!DOCTYPE ");
108 this.RawText(name);
109 if (pubid != null)
110 {
111 this.RawText(" PUBLIC \"");
112 this.RawText(pubid);
113 this.RawText("\" \"");
114 if (sysid == null)
115 {
116 return;
117 }
118 }
119 else
120 {
121 if (sysid == null)
122 {
123 return;
124 }
125 this.RawText(" SYSTEM \"");
126 }
127 this.RawText(sysid);
128 byte[] array = this.bufBytes;
129 if (subset != null)
130 {
131 byte[] array2 = this.bufBytes;
132 this.RawText(subset);
133 byte[] array3 = this.bufBytes;
134 }
135 byte[] array4 = this.bufBytes;
136 }
class f__AnonymousType0<< Count > j__TPar

References System.array, System.Xml.XmlUtf8RawTextWriter.bufBytes, j__TPar, and System.Xml.XmlUtf8RawTextWriter.RawText().