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)
91
public bool IsHeadMethod =>
_requestType
.HasFlag(RequestType.IsHead);
93
public bool IsGetMethod =>
_requestType
.HasFlag(RequestType.IsGet);
97
get =>
_requestType
.HasFlag(RequestType.IsRange);