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

◆ WriteProcessingInstructionAsync() [1/2]

override async Task System.Xml.XmlUtf8RawTextWriter.WriteProcessingInstructionAsync ( string name,
string text )
inline

Definition at line 1688 of file XmlUtf8RawTextWriter.cs.

1689 {
1691 _bufBytes[_bufPos++] = 60;
1692 _bufBytes[_bufPos++] = 63;
1694 if (text.Length > 0)
1695 {
1696 _bufBytes[_bufPos++] = 32;
1698 }
1699 _bufBytes[_bufPos++] = 63;
1700 _bufBytes[_bufPos++] = 62;
1701 }
new ConfiguredTaskAwaitable< TResult > ConfigureAwait(bool continueOnCapturedContext)
Definition Task.cs:226
async Task WriteCommentOrPiAsync(string text, int stopChar)

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

Referenced by System.Xml.XmlUtf8RawTextWriter.WriteXmlDeclarationAsync().