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

◆ WriteSurrogateCharEntityAsync()

override Task System.Xml.XmlRawWriter.WriteSurrogateCharEntityAsync ( char lowChar,
char highChar )
inlinevirtualinherited

Reimplemented from System.Xml.XmlWriter.

Reimplemented in System.Xml.XmlUtf8RawTextWriter, and System.Xml.XmlUtf8RawTextWriterIndent.

Definition at line 293 of file XmlRawWriter.cs.

294 {
295 Span<char> span = stackalloc char[2] { lowChar, highChar };
296 ReadOnlySpan<char> value = span;
297 return WriteStringAsync(new string(value));
298 }
virtual Task WriteStringAsync(string? text)
Definition XmlWriter.cs:668

References System.Xml.Dictionary, System.value, and System.Xml.XmlWriter.WriteStringAsync().