NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlString.FromTime

Converts a time-of-day value to a string.

[Visual Basic]
Public Shared Function FromTime( _
   ByVal value As TimeSpan _
) As String
[C#]
public static string FromTime(
   TimeSpan value
);
[C++]
public: static String* FromTime(
   TimeSpan value
);
[JScript]
public static function FromTime(
   value : TimeSpan
) : String;

Parameters

value
The time-of-day value to convert.

Return Value

A string of the form hh:mm:ss.sssssss, where hh is the hour (00-23), mm is the minute (00-59), and ss.sssssss is the second (00-59), followed, if required, by a decimal point and a fractional part of up to seven digits.

See Also

XmlString Class | XmlString Members | System.Xml Namespace | ToTime