-
-
Notifications
You must be signed in to change notification settings - Fork 11
libcURL.ParseDate
libcURL.ParseDate
Protected Function ParseDate(RawDate As String, ByRef Parsed As Date) As Boolean
Protected Function ParseDate(DateItem As Date) As String
Name | Type | Comment |
---|---|---|
RawDate | String | The date string to parse |
Parsed | Date |
Passed by reference, the Date object to parse the RawDate into |
Name | Type | Comment |
---|---|---|
DateItem | Date |
A Date object to convert to a RFC5322 timestamp
|
Returns True
if the date was parsed, otherwise returns False.
A string containing a RFC5322 timestamp. For example, Sun, 06 Nov 1994 08:49:37 GMT
. This value may be used in HTTP headers, etc. that call for a timestamp.
This pair of methods convert between Date objects and strings containing a corresponding timestamp. Valid for dates between Thu, 01 Jan 1970 00:00:00 GMT
and Tue, 19 Jan 2038 03:14:07 GMT
.
Parses the passed date string into the referenced Date object. If parsing was successful, returns True and instantiates the passed date reference; else, returns false.
Converts the Date object into a RFC5322 timestamp
Wiki home | Project page | Bugs | Become a sponsor
Text and code examples are Copyright ©2014-24 Andrew Lambert, offered under the CC BY-SA 3.0 License.