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

◆ ParseDocumentContentAsync_WhiteSpace()

Task< bool > System.Xml.XmlTextReaderImpl.ParseDocumentContentAsync_WhiteSpace ( )
inlineprivate

Definition at line 9941 of file XmlTextReaderImpl.cs.

9942 {
9944 if (task.IsSuccess())
9945 {
9946 if (task.Result)
9947 {
9948 if (_fragmentType == XmlNodeType.None && _curNode.type == XmlNodeType.Text)
9949 {
9950 _fragmentType = XmlNodeType.Element;
9951 }
9952 return AsyncHelper.DoneTaskTrue;
9953 }
9955 }
9957 }
async Task< bool > _ParseDocumentContentAsync_WhiteSpace(Task< bool > task)

References System.Xml.XmlTextReaderImpl._curNode, System.Xml.XmlTextReaderImpl._fragmentType, System.Xml.XmlTextReaderImpl._ParseDocumentContentAsync_WhiteSpace(), System.Xml.AsyncHelper.DoneTaskTrue, System.Xml.XmlTextReaderImpl.ParseDocumentContentAsync(), System.Xml.XmlTextReaderImpl.ParseTextAsync(), System.task, and System.Xml.XmlTextReaderImpl.NodeData.type.

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