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

◆ RawTextAsync() [1/2]

Task System.Xml.XmlEncodedRawTextWriter.RawTextAsync ( string text)
inlineprotectedinherited

Definition at line 2632 of file XmlEncodedRawTextWriter.cs.

2633 {
2634 int num = RawTextNoFlush(text, 0, text.Length);
2635 if (num < 0)
2636 {
2637 return Task.CompletedTask;
2638 }
2639 return _RawTextAsync(text, num, text.Length - num);
2640 }
static Task CompletedTask
Definition Task.cs:1120
async Task _RawTextAsync(string text1, int curIndex1, int leftCount1, string text2=null, string text3=null, string text4=null)
unsafe int RawTextNoFlush(char *pSrcBegin, char *pSrcEnd)

References System.Xml.XmlEncodedRawTextWriter._RawTextAsync(), System.Threading.Tasks.Task< TResult >.CompletedTask, System.Xml.XmlEncodedRawTextWriter.RawTextNoFlush(), and System.text.

Referenced by System.Xml.XmlEncodedRawTextWriter._RawTextAsync(), System.Xml.XmlEncodedRawTextWriter._WriteElementTextBlockAsync(), System.Xml.XmlEncodedRawTextWriter.WriteCDataSectionAsync(), System.Xml.XmlEncodedRawTextWriter.WriteCharEntityAsync(), System.Xml.XmlEncodedRawTextWriter.WriteCommentOrPiAsync(), System.Xml.XmlEncodedRawTextWriter.WriteDocTypeAsync(), System.Xml.XmlEncodedRawTextWriter.WriteElementTextBlockAsync(), System.Xml.XmlEncodedRawTextWriter.WriteEndElementAsync(), System.Xml.XmlEncodedRawTextWriter.WriteEntityRefAsync(), System.Xml.XmlEncodedRawTextWriter.WriteFullEndElementAsync(), System.Xml.XmlEncodedRawTextWriterIndent.WriteIndentAsync(), System.Xml.XmlEncodedRawTextWriter.WriteProcessingInstructionAsync(), System.Xml.XmlEncodedRawTextWriter.WriteRawWithCharCheckingAsync(), System.Xml.XmlEncodedRawTextWriter.WriteRawWithCharCheckingAsync(), System.Xml.XmlEncodedRawTextWriter.WriteStartAttributeAsync(), System.Xml.XmlEncodedRawTextWriter.WriteStartElementAsync(), System.Xml.XmlEncodedRawTextWriter.WriteStartNamespaceDeclarationAsync(), System.Xml.XmlEncodedRawTextWriter.WriteSurrogateCharEntityAsync(), and System.Xml.XmlEncodedRawTextWriter.WriteXmlDeclarationAsync().