Appearance
TallComponents.UnoPdf.Client
TallComponents.UnoPdf.Client.Infrastructure
HttpDate Class
Date formats for dates passed within an HTTP request/response
Taken from: https://github.com/wis3guy/HttpDate
csharp
public static class HttpDateInheritance System.Object 🡒 HttpDate
| Fields | |
|---|---|
| AscTimeFormat | ANSI C's asctime() format (Sun Nov 6 08:49:37 1994) |
| Rfc1123Format | RFC 822, updated by RFC 1123 (Sun, 06 Nov 1994 08:49:37 GMT) |
| Rfc850Format | RFC 850, obsoleted by RFC 1036 (Sunday, 06-Nov-94 08:49:37 GMT) |
| Methods | |
|---|---|
| Format(DateTime) | Formats the date based on RFC1123 |
| FormatAscTime(DateTime) | Formats the date based on ASC TIME |
| FormatRfc1123(DateTime) | Formats the date based on RFC1123 |
| FormatRfc850(DateTime) | Formats the date based on RFC850 |
| TryParse(string, DateTime) | Parses a date value received over HTTP http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.3.1 |