Remove Frame.RequestUri.
This commit is contained in:
parent
2453047fe2
commit
80a2bc124d
|
|
@ -82,7 +82,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Http
|
||||||
public int LocalPort { get; set; }
|
public int LocalPort { get; set; }
|
||||||
public string Scheme { get; set; }
|
public string Scheme { get; set; }
|
||||||
public string Method { get; set; }
|
public string Method { get; set; }
|
||||||
public string RequestUri { get; set; }
|
|
||||||
public string PathBase { get; set; }
|
public string PathBase { get; set; }
|
||||||
public string Path { get; set; }
|
public string Path { get; set; }
|
||||||
public string QueryString { get; set; }
|
public string QueryString { get; set; }
|
||||||
|
|
@ -276,7 +275,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Http
|
||||||
|
|
||||||
Scheme = null;
|
Scheme = null;
|
||||||
Method = null;
|
Method = null;
|
||||||
RequestUri = null;
|
|
||||||
PathBase = null;
|
PathBase = null;
|
||||||
Path = null;
|
Path = null;
|
||||||
QueryString = null;
|
QueryString = null;
|
||||||
|
|
@ -914,7 +912,6 @@ namespace Microsoft.AspNetCore.Server.Kestrel.Http
|
||||||
|
|
||||||
consumed = scan;
|
consumed = scan;
|
||||||
Method = method;
|
Method = method;
|
||||||
RequestUri = requestUrlPath;
|
|
||||||
QueryString = queryString;
|
QueryString = queryString;
|
||||||
HttpVersion = httpVersion;
|
HttpVersion = httpVersion;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue