8 instantiations of Http1ParsingHandler
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\Http1Connection.cs (8)
206return _parser.ParseRequestLine(new Http1ParsingHandler(this), ref reader); 213if (!_parser.ParseRequestLine(new Http1ParsingHandler(this), ref trimmedReader)) 237var result = _parser.ParseHeaders(new Http1ParsingHandler(this, trailers), ref reader); 256if (!_parser.ParseHeaders(new Http1ParsingHandler(this, trailers), ref trimmedReader)) 336return _parser.TryParseRequestLine(new Http1ParsingHandler(this), ref reader); 343var result = _parser.TryParseRequestLine(new Http1ParsingHandler(this), ref trimmedReader); 366var result = _parser.TryParseHeaders(new Http1ParsingHandler(this, trailers), ref reader); 381var result = _parser.TryParseHeaders(new Http1ParsingHandler(this, trailers), ref trimmedReader);
3 references to Http1ParsingHandler
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\Http1Connection.cs (1)
50private readonly IHttpParser<Http1ParsingHandler> _parser;
Internal\KestrelServerImpl.cs (1)
102HttpParser = new HttpParser<Http1ParsingHandler>(trace.IsEnabled(LogLevel.Information), serverOptions.DisableHttp1LineFeedTerminators),
Internal\ServiceContext.cs (1)
22public IHttpParser<Http1ParsingHandler> HttpParser { get; set; } = default!;