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