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






Reads the next node from the stream.

Syntax

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

Return Value

true if the next node was read successfully; false if there are no more nodes to read.

Remarks

When an XmlFastInfosetReader is first created and initialized, there is no information available. You must call Read to read the first node.

See Also