15 references to HttpRequestFeature
Microsoft.AspNetCore.Http (15)
Internal\DefaultHttpRequest.cs (15)
69
get { return new PathString(
HttpRequestFeature
.PathBase); }
70
set {
HttpRequestFeature
.PathBase = value.Value ?? string.Empty; }
75
get { return new PathString(
HttpRequestFeature
.Path); }
76
set {
HttpRequestFeature
.Path = value.Value ?? string.Empty; }
81
get { return new QueryString(
HttpRequestFeature
.QueryString); }
82
set {
HttpRequestFeature
.QueryString = value.Value ?? string.Empty; }
93
get { return
HttpRequestFeature
.Body; }
94
set {
HttpRequestFeature
.Body = value; }
99
get { return
HttpRequestFeature
.Method; }
100
set {
HttpRequestFeature
.Method = value; }
105
get { return
HttpRequestFeature
.Scheme; }
106
set {
HttpRequestFeature
.Scheme = value; }
129
get { return
HttpRequestFeature
.Protocol; }
130
set {
HttpRequestFeature
.Protocol = value; }
135
get { return
HttpRequestFeature
.Headers; }