11 references to General
System.Net.Http (11)
System\Net\Http\Headers\HttpRequestHeaders.cs (1)
269
: base(HttpHeaderType.
General
| HttpHeaderType.Request | HttpHeaderType.Custom, HttpHeaderType.Response)
System\Net\Http\Headers\HttpResponseHeaders.cs (1)
137
: base(containsTrailingHeaders ? HttpHeaderType.All ^ HttpHeaderType.Request : HttpHeaderType.
General
| HttpHeaderType.Response | HttpHeaderType.Custom,
System\Net\Http\Headers\KnownHeaders.cs (9)
33
public static readonly KnownHeader CacheControl = new KnownHeader("Cache-Control", HttpHeaderType.
General
| HttpHeaderType.NonTrailing, CacheControlHeaderParser.Parser, new string[] { "must-revalidate", "no-cache", "no-store", "no-transform", "private", "proxy-revalidate", "public" }, H2StaticTable.CacheControl, H3StaticTable.CacheControlMaxAge0);
34
public static readonly KnownHeader Connection = new KnownHeader("Connection", HttpHeaderType.
General
, GenericHeaderParser.TokenListParser, new string[] { "close" });
46
public static readonly KnownHeader Date = new KnownHeader("Date", HttpHeaderType.
General
| HttpHeaderType.NonTrailing, DateHeaderParser.Parser, null, H2StaticTable.Date, H3StaticTable.Date);
68
public static readonly KnownHeader Pragma = new KnownHeader("Pragma", HttpHeaderType.
General
| HttpHeaderType.NonTrailing, GenericHeaderParser.MultipleValueNameValueParser, new string[] { "no-cache" });
91
public static readonly KnownHeader Trailer = new KnownHeader("Trailer", HttpHeaderType.
General
| HttpHeaderType.NonTrailing, GenericHeaderParser.TokenListParser);
92
public static readonly KnownHeader TransferEncoding = new KnownHeader("Transfer-Encoding", HttpHeaderType.
General
| HttpHeaderType.NonTrailing, TransferCodingHeaderParser.MultipleValueParser, new string[] { "chunked", "compress", "deflate", "gzip", "identity" }, H2StaticTable.TransferEncoding);
93
public static readonly KnownHeader Upgrade = new KnownHeader("Upgrade", HttpHeaderType.
General
, GenericHeaderParser.MultipleValueProductParser);
97
public static readonly KnownHeader Via = new KnownHeader("Via", HttpHeaderType.
General
, GenericHeaderParser.MultipleValueViaParser, null, H2StaticTable.Via);
99
public static readonly KnownHeader Warning = new KnownHeader("Warning", HttpHeaderType.
General
| HttpHeaderType.NonTrailing, GenericHeaderParser.MultipleValueWarningParser);