10 references to ParsingHelpers
Microsoft.AspNetCore.Http.Abstractions (4)
Extensions\HeaderDictionaryExtensions.cs (4)
21ParsingHelpers.AppendHeaderUnmodified(headers, key, value); 32ParsingHelpers.AppendHeaderJoined(headers, key, values); 46return ParsingHelpers.GetHeaderSplit(headers, key); 58ParsingHelpers.SetHeaderJoined(headers, key, values);
Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks (4)
GetHeaderSplitBenchmark.cs (4)
29var values = ParsingHelpers.GetHeaderSplit(_dictionary, "singleValue"); 39var values = ParsingHelpers.GetHeaderSplit(_dictionary, "singleValueQuoted"); 49var values = ParsingHelpers.GetHeaderSplit(_dictionary, "doubleValue"); 59var values = ParsingHelpers.GetHeaderSplit(_dictionary, "manyValue");
Microsoft.AspNetCore.Http.Extensions (2)
RequestDelegateFactory.cs (2)
55private static readonly MethodInfo GetHeaderSplitMethod = typeof(ParsingHelpers).GetMethod(nameof(ParsingHelpers.GetHeaderSplit), BindingFlags.Public | BindingFlags.Static, [typeof(IHeaderDictionary), typeof(string)])!;