2 instantiations of ProductInfoHeaderParser
System.Net.Http (2)
System\Net\Http\Headers\ProductInfoHeaderParser.cs (2)
16
internal static readonly ProductInfoHeaderParser SingleValueParser = new
ProductInfoHeaderParser
(false);
17
internal static readonly ProductInfoHeaderParser MultipleValueParser = new
ProductInfoHeaderParser
(true);
6 references to ProductInfoHeaderParser
System.Net.Http (6)
System\Net\Http\Headers\KnownHeaders.cs (2)
84
public static readonly KnownHeader Server = new KnownHeader("Server", HttpHeaderType.Response,
ProductInfoHeaderParser
.MultipleValueParser, null, H2StaticTable.Server, H3StaticTable.Server);
95
public static readonly KnownHeader UserAgent = new KnownHeader("User-Agent", HttpHeaderType.Request,
ProductInfoHeaderParser
.MultipleValueParser, null, H2StaticTable.UserAgent, H3StaticTable.UserAgent);
System\Net\Http\Headers\ProductInfoHeaderParser.cs (2)
16
internal static readonly
ProductInfoHeaderParser
SingleValueParser = new ProductInfoHeaderParser(false);
17
internal static readonly
ProductInfoHeaderParser
MultipleValueParser = new ProductInfoHeaderParser(true);
System\Net\Http\Headers\ProductInfoHeaderValue.cs (2)
85
object result =
ProductInfoHeaderParser
.SingleValueParser.ParseValue(
101
if (
ProductInfoHeaderParser
.SingleValueParser.TryParseValue(input, null, ref index, out object? output))