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






value

The 32-bit signed integer value to write.

Writes a 32-bit signed integer.

Syntax

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

Parameters

value

The 32-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