From fa8c5cbb3a8eca81223c34eb90fa3a81107b093e Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 8 Jan 2016 19:28:34 -0800 Subject: [PATCH] Updating QueryString doc comment --- src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs b/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs index c0f52fd400..a13a78e600 100644 --- a/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs +++ b/src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs @@ -54,15 +54,15 @@ namespace Microsoft.AspNet.Http public abstract PathString Path { get; set; } /// - /// Gets or set the query string. + /// Gets or set the raw query string used to create the query collection in Request.Query. /// - /// The query string. + /// The raw query string. public abstract QueryString QueryString { get; set; } /// - /// Gets the query value collection parsed from RequestQueryString. + /// Gets the query value collection parsed from Request.QueryString. /// - /// The query value collection parsed from RequestQueryString. + /// The query value collection parsed from Request.QueryString. public abstract IQueryCollection Query { get; set; } ///