System::Xml::XmlConvert::ToDateTimeOffset method

XmlConvert::ToDateTimeOffset(const String&) method

Converts the supplied String to a DateTimeOffset equivalent.

static DateTimeOffset System::Xml::XmlConvert::ToDateTimeOffset(const String &s)
ParameterTypeDescription
sconst String&The string to convert. The string must conform to a subset of the W3C Recommendation for the XML dateTime type. For more information, see the dateTime section of the XML Schema specification.

ReturnValue

The DateTimeOffset equivalent of the supplied string.

See Also

XmlConvert::ToDateTimeOffset(const String&, const String&) method

Converts the supplied String to a DateTimeOffset equivalent.

static DateTimeOffset System::Xml::XmlConvert::ToDateTimeOffset(const String &s, const String &format)
ParameterTypeDescription
sconst String&The string to convert.
formatconst String&The format from which s is converted. The format parameter can be any subset of the W3C Recommendation for the XML dateTime type. For more information, see the dateTime section of the XML Schema specification. The string s is validated against this format.

ReturnValue

The DateTimeOffset equivalent of the supplied string.

See Also

XmlConvert::ToDateTimeOffset(const String&, const ArrayPtr<String>&) method

Converts the supplied String to a DateTimeOffset equivalent.

static DateTimeOffset System::Xml::XmlConvert::ToDateTimeOffset(const String &s, const ArrayPtr<String> &formats)
ParameterTypeDescription
sconst String&The string to convert.
formatsconst ArrayPtr<String>&An array of formats from which s can be converted. Each format in formats can be any subset of the W3C Recommendation for the XML dateTime type. For more information, see the dateTime section of the XML Schema specification. The string s is validated against one of these formats.

ReturnValue

The DateTimeOffset equivalent of the supplied string.

See Also