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






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

Syntax

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

Return Value

The 16-bit integer values read.

Remarks

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

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

See Also