SoapTime.Parse(String) Method

Definition

Converts the specified String into a SoapTime object.

public:
 static System::Runtime::Remoting::Metadata::W3cXsd2001::SoapTime ^ Parse(System::String ^ value);
public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime Parse (string value);
static member Parse : string -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapTime
Public Shared Function Parse (value As String) As SoapTime

Parameters

value
String

The String to convert.

Returns

A SoapTime object that is obtained from value.

Exceptions

value does not contain a date and time that corresponds to any of the recognized format patterns.

Examples

The following code example shows how to use this method. This code example is part of a larger example that is provided for the SoapTime class.

// Parse an XSD gTime to create a SoapTime object.
// The timezone of this object is the current timezone.
String^ xsdTime = "12:13:14.123Z";
SoapTime^ time = SoapTime::Parse( xsdTime );
// Parse an XSD gTime to create a SoapTime object.
// The time zone of this object is the current time zone.
string xsdTime = "12:13:14.123Z";
SoapTime time = SoapTime.Parse(xsdTime);

Remarks

The Parse method is capable of parsing strings in the HH:mm:ss.fffzzz format. This is composed out of the following format patterns.

Format Pattern Description Examples
HH The hour within a 24-hour range. Single-digit hours have a leading zero. 17, 07
mm The minute. Single-digit minutes have a leading zero. 49, 05
ss The second. Single-digit seconds have a leading zero. 32, 02
fff The fraction of a second. A maximum of 7 fraction digits are allowed, and only the first three are parsed. 321635, 4592
zzz The full time zone offset (hour and minutes) from the Universal Time Coordinate (Greenwich Mean Time). Single-digit hours have a leading zero. -07:00, +08:00, Z

Only the first 3 fraction digits are parsed because the parsed value is stored as a DateTime object, and the DateTime type supports precisely 3 fraction digits of accuracy.

Applies to