3 references to Error
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\IHttpParser.cs (3)
32public bool HasError => _status == ParseStatus.Error; 50public static HttpParseResult Error(RequestRejectionReason reason) => new(ParseStatus.Error, reason); 53public static HttpParseResult Error(RequestRejectionReason reason, int offset, int length) => new(ParseStatus.Error, reason, offset, length);