Noemax FastInfoset.NET
MoveToContent Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetReader Class : MoveToContent Method






Checks whether the current node is a content (non-white space text, CDATA, Element, EndElement, EntityReference, or EndEntity) node. If the node is not a content node, the reader skips ahead to the next content node or end of file. It skips over nodes of the following type: ProcessingInstruction, DocumentType, Comment, Whitespace, or SignificantWhitespace.

Syntax

Visual Basic (Declaration) 
Public Overrides NotOverridable Function MoveToContent() As XmlNodeType
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim value As XmlNodeType
 
value = instance.MoveToContent()
C# 
public override XmlNodeType MoveToContent()
Delphi 
public function MoveToContent(): XmlNodeType; override; 
JScript 
public override function MoveToContent() : XmlNodeType;
Managed Extensions for C++ 
public: XmlNodeType MoveToContent(); override 
C++/CLI 
public:
XmlNodeType MoveToContent(); override 

Return Value

The NodeType of the current node found by the method or XmlNodeType.None if the reader has reached the end of the input stream.

See Also