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






value
TimeSpan value to write.
Write TimeSpan value.

Syntax

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

Parameters

value
TimeSpan 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