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