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

◆ WriteElementTextBlockNoFlush() [3/3]

unsafe int System.Xml.XmlUtf8RawTextWriter.WriteElementTextBlockNoFlush ( string text,
int index,
int count,
out bool needWriteNewLine )
inlineprotectedinherited

Definition at line 2137 of file XmlUtf8RawTextWriter.cs.

2138 {
2139 needWriteNewLine = false;
2140 if (count == 0)
2141 {
2142 _contentPos = 0;
2143 return -1;
2144 }
2145 fixed (char* ptr = text)
2146 {
2147 char* ptr2 = ptr + index;
2148 char* pSrcEnd = ptr2 + count;
2150 }
2151 }
unsafe int WriteElementTextBlockNoFlush(char *pSrc, char *pSrcEnd, out bool needWriteNewLine)

References System.Xml.XmlUtf8RawTextWriter._contentPos, System.count, System.Xml.Dictionary, System.index, System.text, and System.Xml.XmlUtf8RawTextWriter.WriteElementTextBlockNoFlush().