1 instantiation of DateHeaderParser
System.Net.Http (1)
System\Net\Http\Headers\DateHeaderParser.cs (1)
13
internal static readonly DateHeaderParser Parser = new
DateHeaderParser
();
6 references to DateHeaderParser
System.Net.Http (6)
System\Net\Http\Headers\DateHeaderParser.cs (1)
13
internal static readonly
DateHeaderParser
Parser = new DateHeaderParser();
System\Net\Http\Headers\KnownHeaders.cs (5)
48
public static readonly KnownHeader Date = new("Date", HttpHeaderType.General | HttpHeaderType.NonTrailing,
DateHeaderParser
.Parser, null, H2StaticTable.Date, H3StaticTable.Date);
52
public static readonly KnownHeader Expires = new("Expires", HttpHeaderType.Content | HttpHeaderType.NonTrailing,
DateHeaderParser
.Parser, ["Thu, 01 Jan 1970 00:00:01 GMT", "Mon, 01 Jan 1990 00:00:00 GMT"], H2StaticTable.Expires);
59
public static readonly KnownHeader IfModifiedSince = new("If-Modified-Since", HttpHeaderType.Request | HttpHeaderType.NonTrailing,
DateHeaderParser
.Parser, null, H2StaticTable.IfModifiedSince, H3StaticTable.IfModifiedSince);
62
public static readonly KnownHeader IfUnmodifiedSince = new("If-Unmodified-Since", HttpHeaderType.Request | HttpHeaderType.NonTrailing,
DateHeaderParser
.Parser, null, H2StaticTable.IfUnmodifiedSince);
64
public static readonly KnownHeader LastModified = new("Last-Modified", HttpHeaderType.Content,
DateHeaderParser
.Parser, null, H2StaticTable.LastModified, H3StaticTable.LastModified);