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






value
Decimal value to writer.
Write Decimal value.

Syntax

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

Parameters

value
Decimal value to writer.

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