LiquidTechnologies.XmlObjects Namespace / LxDateTime Structure / TryParseXSDDateTimeStamp Method / TryParseXSDDateTimeStamp(String,LxDateTime,Exception) Method
The string to be parsed
The resulting LxDateTime object (if true is returned)
The System.Exception describing the error is the string could not be parsed (and false was returned)

In This Topic
    TryParseXSDDateTimeStamp(String,LxDateTime,Exception) Method
    In This Topic
    Parses a string containing an xs:dateTimeStamp (XSD 1.1)
    Syntax
    'Declaration
     
    
    Public Overloads Shared Function TryParseXSDDateTimeStamp( _
       ByVal xsdDateTime As System.String, _
       ByRef result As LxDateTime, _
       ByRef ex As System.Exception _
    ) As System.Boolean
    public static System.bool TryParseXSDDateTimeStamp( 
       System.string xsdDateTime,
       out LxDateTime result,
       out System.Exception ex
    )

    Parameters

    xsdDateTime
    The string to be parsed
    result
    The resulting LxDateTime object (if true is returned)
    ex
    The System.Exception describing the error is the string could not be parsed (and false was returned)

    Return Value

    true if the string was successfully parsed into a LxDateTime, false if an error occurred.
    Remarks
    Parses a xs:dateTimeStamp string (a xs:dateTimeStamp is a xs:dateTime with timezone information) e.g.

    "2004-04-12T13:20:00-05:00" = 1:20 pm on April 12, 2004, US Eastern Standard Time
    "2004-04-12T13:20:00Z" = 1:20 pm on April 12, 2004, Coordinated Universal Time(UTC)
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also