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






Reads a single or multiple occurrences of 32-bit integer values from the current position.

Syntax

Visual Basic (Declaration) 
Public Function ReadAsInt() As Integer()
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetReader
Dim value() As Integer
 
value = instance.ReadAsInt()
C# 
public int[] ReadAsInt()
Delphi 
public function ReadAsInt(): array of Integer; 
JScript 
public function ReadAsInt() : int[];
Managed Extensions for C++ 
public: int[]* ReadAsInt(); 
C++/CLI 
public:
array<int>^ ReadAsInt(); 

Return Value

The 32-bit integer values read.

Remarks

The ReadAsInt method reads a single or multiple integer values from the current position in the content.

The integer values must have been encoded using Fast Infoset's binary encoding of integer values.

See Also