XmlConvert.ToDateTime Method (String, XmlDateTimeSerializationMode)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Converts the String to a DateTime using the XmlDateTimeSerializationMode specified
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Syntax
'Declaration
Public Shared Function ToDateTime ( _
s As String, _
dateTimeOption As XmlDateTimeSerializationMode _
) As DateTime
public static DateTime ToDateTime(
string s,
XmlDateTimeSerializationMode dateTimeOption
)
Parameters
- s
Type: System.String
The String value to convert.
- dateTimeOption
Type: System.Xml.XmlDateTimeSerializationMode
One of the XmlDateTimeSerializationMode values that specify whether the date should be converted to local time or preserved as Coordinated Universal Time (UTC), if it is a UTC date.
Return Value
Type: System.DateTime
A DateTime equivalent of the String.
Exceptions
Exception | Condition |
---|---|
NullReferenceException | The dateTimeOption value is nulla null reference (Nothing in Visual Basic). |
FormatException | s is an empty string or is not in a valid format. |
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Xbox 360, Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
See Also