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