SoapDate.Parse(String) Method

Definition

Converts the specified String into a SoapDate object.

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

Parameters

value
String

The String to convert.

Returns

A SoapDate 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 SoapDate class.

// Parse an XSD date to create a SoapDate object.
String^ xsdDate = "2003-02-04";
SoapDate^ date = SoapDate::Parse( xsdDate );
// Parse an XSD date to create a SoapDate object.
string xsdDate = "2003-02-04";
SoapDate date = SoapDate.Parse(xsdDate);

Remarks

The Parse method is capable of parsing strings in various formats. The recognizable string formats are composed out of the following format patterns.

Format Pattern Description Examples
yyyy The year in 4-digit format. 1999, 1812
MM The numeric month. Single-digit months have a leading zero. 11, 05
dd The day of the month. Single-digit days have a leading zero. 23, 09
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

Applies to