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

◆ ParseElementContent_ReadData()

async Task< bool > System.Xml.XmlTextReaderImpl.ParseElementContent_ReadData ( )
inlineprivate

Definition at line 10079 of file XmlTextReaderImpl.cs.

10080 {
10081 if (await ReadDataAsync().ConfigureAwait(continueOnCapturedContext: false) == 0)
10082 {
10083 if (_ps.charsUsed - _ps.charPos != 0)
10084 {
10086 }
10087 if (!InEntity)
10088 {
10089 if (_index == 0 && _fragmentType != XmlNodeType.Document)
10090 {
10091 OnEof();
10092 return false;
10093 }
10095 }
10097 {
10099 return true;
10100 }
10101 }
10103 }
new ConfiguredTaskAwaitable< TResult > ConfigureAwait(bool continueOnCapturedContext)
Definition Task.cs:226
bool HandleEntityEnd(bool checkEntityNesting)

References System.Xml.XmlTextReaderImpl._fragmentType, System.Xml.XmlTextReaderImpl._index, System.Xml.XmlTextReaderImpl._ps, System.Xml.XmlTextReaderImpl.ParsingState.charPos, System.Xml.XmlTextReaderImpl.ParsingState.charsUsed, System.Threading.Tasks.Task< TResult >.ConfigureAwait(), System.Xml.XmlTextReaderImpl.HandleEntityEnd(), System.Xml.XmlTextReaderImpl.OnEof(), System.Xml.XmlTextReaderImpl.ParseElementContentAsync(), System.Xml.XmlTextReaderImpl.ReadDataAsync(), System.Xml.XmlTextReaderImpl.SetupEndEntityNodeInContent(), and System.Xml.XmlTextReaderImpl.ThrowUnclosedElements().

Referenced by System.Xml.XmlTextReaderImpl.ParseElementContentAsync().