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






Reads the text content at the current position as a 64-bit signed integer.

Syntax

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

Return Value

The content as a 64-bit signed integer.

Remarks

If the content is a binary encoded 64-bit signed integer, the reader returns the value read. If the content is of any other type, the reader attempts to convert it to a 64-bit signed integer.

See Also