Liquid XML Data Binder (C++, Java, VB6) / Reference / C# and VB .Net (Deprecated - use Liquid XML Objects) / Reference / XmlDateTime / Liquid XML Runtime for .Net - Class Constructor XmlDateTime - XmlDateTime
In This Topic
    Liquid XML Runtime for .Net - Class Constructor XmlDateTime - XmlDateTime
    In This Topic
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime()
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime(XmlDateTime.DateType type)
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime(XmlDateTime xmldt)
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime(System.DateTime dt)
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime(short year, byte month, byte day)
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime(short year, byte month, byte day, byte hour, byte minute, byte second)
    This feature has been superseded by Liquid XML Objects.
    (The original functionality is still included in the product)
    Use Liquid XML Objects
    XmlDateTime(short year, byte month, byte day, byte hour, byte minute, byte second, short milli, short micro, short nano)
      Property Description  
        Argument type XmlDateTime.DateType the type of this XmlDateTime  
        Argument xmldt An Existing XmlDateTime object to populate from  
        Argument dt A System.DateTime object to populate from  
        Argument year sets the Year part of the date. (Valid Range -9999 to 9999)  
        Argument month sets the Month part of the date. Jan = 1, Feb = 2 etc. (Valid Range = 1 to 12)  
        Argument day sets the Day part of the date. (Valid Range = 1 to days in month)  
        Argument hour sets the Hours part of the date. (Valid Range = 0 to 23)  
        Argument minute sets the Minutes part of the date. (Valid Range = 0 to 59)  
        Argument second sets the Seconds part of the date. (Valid Range = 0 to 59)  
        Argument milli sets the Milli-Seocnds part of the date. (Valid Range = 0 to 999)  
        Argument micro sets the Micro-Seocnds part of the date. (Valid Range = 0 to 999)  
        Argument nano sets the Nano-Seocnds part of the date. (Valid Range = 0 to 999)  
        Description Constructs a XmlDateTime.  
        Remarks XmlDateTime();
    The internal data is invalid until a set method is called.

    XmlDateTime(XmlDateTime.DateType type);
    The internal data is invalid until a set method is called.
    NOTE: Only methods that keep this type may be used to set the data.

    XmlDateTime(short year, byte month, byte day)
    Constructs a XmlDateTime, of type xs:date. This constructor is overloaded allowing different values to be set.
    The internal data is set invalid on parsing invalid values.
    NOTE: XmlDateTime uses the XML Schema formula for proleptic Gregorian calendar where year 0 is illegal and -4 (4BC) as a leap year.

    XmlDateTime(short year, byte month, byte day, byte hour, byte minute, byte second)
    Constructs a XmlDateTime, of type xs:dateTime. This constructor is overloaded allowing different values to be set.
    The internal data is set invalid on parsing invalid values.
    NOTE: XmlDateTime uses the XML Schema formula for proleptic Gregorian calendar where year 0 is illegal and -4 (4BC) as a leap year.

    XmlDateTime(short year, byte month, byte day, byte hour, byte minute, byte second, short milli, short micro, short nano)
    Constructs a XmlDateTime, of type xs:dateTime. This constructor is overloaded allowing different values to be set.
    The internal data is set invalid on parsing invalid values.
    NOTE: XmlDateTime uses the XML Schema formula for proleptic Gregorian calendar where year 0 is illegal and -4 (4BC) as a leap year. Param: year sets the Year part of the date. (Valid Range -9999 to 9999)