This repository was archived by the owner on Nov 20, 2018. It is now read-only.
File tree 2 files changed +0
-18
lines changed
Microsoft.AspNetCore.Http/Internal
Microsoft.AspNetCore.Http.Abstractions
2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -65,18 +65,6 @@ public abstract class HttpRequest
65
65
/// <returns>The query value collection parsed from Request.QueryString.</returns>
66
66
public abstract IQueryCollection Query { get ; set ; }
67
67
68
- /// <summary>
69
- /// Gets the request target as it was sent in the HTTP request. This property contains the
70
- /// escaped path and full query, as well as other request targets such as * for OPTIONS
71
- /// requests (https://tools.ietf.org/html/rfc7230#section-5.3).
72
- /// </summary>
73
- /// <remarks>
74
- /// This property is not used internally for routing or authorization decisions. It has not
75
- /// been UrlDecoded and care should be taken in its use.
76
- /// </remarks>
77
- /// <returns>The raw request target.</returns>
78
- public abstract string RawTarget { get ; set ; }
79
-
80
68
/// <summary>
81
69
/// Gets or set the RequestProtocol.
82
70
/// </summary>
Original file line number Diff line number Diff line change @@ -112,12 +112,6 @@ public override IQueryCollection Query
112
112
set { QueryFeature . Query = value ; }
113
113
}
114
114
115
- public override string RawTarget
116
- {
117
- get { return HttpRequestFeature . RawTarget ; }
118
- set { HttpRequestFeature . RawTarget = value ; }
119
- }
120
-
121
115
public override string Protocol
122
116
{
123
117
get { return HttpRequestFeature . Protocol ; }
You can’t perform that action at this time.
0 commit comments