9 references to RequestType
Microsoft.AspNetCore.StaticFiles (9)
StaticFileContext.cs (9)
42private RequestType _requestType; 75_requestType = RequestType.IsGet; 79_requestType = RequestType.IsHead; 83_requestType = RequestType.Unspecified; 91public bool IsHeadMethod => _requestType.HasFlag(RequestType.IsHead); 93public bool IsGetMethod => _requestType.HasFlag(RequestType.IsGet); 97get => _requestType.HasFlag(RequestType.IsRange); 102_requestType |= RequestType.IsRange; 106_requestType &= ~RequestType.IsRange;