Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ WriteDocTypeAsync() [1/2]

override async Task System.Xml.XmlUtf8RawTextWriter.WriteDocTypeAsync ( string name,
string pubid,
string sysid,
string subset )
inline

Definition at line 1501 of file XmlUtf8RawTextWriter.cs.

1502 {
1506 if (pubid != null)
1507 {
1511 if (sysid != null)
1512 {
1514 }
1515 _bufBytes[_bufPos++] = 34;
1516 }
1517 else if (sysid != null)
1518 {
1521 _bufBytes[_bufPos++] = 34;
1522 }
1523 else
1524 {
1525 _bufBytes[_bufPos++] = 32;
1526 }
1527 if (subset != null)
1528 {
1529 _bufBytes[_bufPos++] = 91;
1531 _bufBytes[_bufPos++] = 93;
1532 }
1533 _bufBytes[_bufPos++] = 62;
1534 }
new ConfiguredTaskAwaitable< TResult > ConfigureAwait(bool continueOnCapturedContext)
Definition Task.cs:226

References System.Xml.XmlUtf8RawTextWriter._bufBytes, System.Xml.XmlUtf8RawTextWriter._bufPos, System.Xml.XmlUtf8RawTextWriter.CheckAsyncCall(), System.Threading.Tasks.Task< TResult >.ConfigureAwait(), System.Xml.Dictionary, and System.Xml.XmlUtf8RawTextWriter.RawTextAsync().