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






value

The 16-bit signed integer value to write.

Writes a 16-bit signed integer value.

Syntax

Visual Basic (Declaration) 
Public Overloads Shadows Sub WriteValue( _
   ByVal value As Short _
) 
Visual Basic (Usage)Copy Code
Dim instance As XmlFastInfosetWriter
Dim value As Short
 
instance.WriteValue(value)
C# 
public new void WriteValue( 
   short value
)
Delphi 
public procedure WriteValue( 
    value: ShortInt
); 
JScript 
public hide function WriteValue( 
   value : short
);
Managed Extensions for C++ 
public: new void WriteValue( 
   short value
) 
C++/CLI 
public:
new void WriteValue( 
   short value
) 

Parameters

value

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