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