Noemax FastInfoset.NET
WriteValue(Int64) Method
See Also  Send Feedback
Noemax.FastInfoset Namespace > XmlFastInfosetWriter Class > WriteValue Method : WriteValue(Int64) Method






value

The 64-bit signed integer value to write.

Writes a 64-bit signed integer value.

Syntax

Visual Basic (Declaration) 
Public Overloads Overrides NotOverridable Sub WriteValue( _
   ByVal value As Long _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value As Long
 
instance.WriteValue(value)
C# 
public override void WriteValue( 
   long value
)
Delphi 
public procedure WriteValue( 
    value: Int64
); override; 
JScript 
public override function WriteValue( 
   value : long
);
Managed Extensions for C++ 
public: void WriteValue( 
   long value
) override 
C++/CLI 
public:
void WriteValue( 
   int64 value
) override 

Parameters

value

The 64-bit signed integer value to write.

Remarks

If WriteValue is called multiple times in succession, values are written one next to the other without being delimited by white space. To write a list of values, call the WriteValue(Object) method using an array of values as parameter.

Values are encoded according to the Profile settings.

See Also