Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit fa8c5cb

Browse files
committed
Updating QueryString doc comment
1 parent 6bc8384 commit fa8c5cb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Microsoft.AspNet.Http.Abstractions/HttpRequest.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ public abstract class HttpRequest
5454
public abstract PathString Path { get; set; }
5555

5656
/// <summary>
57-
/// Gets or set the query string.
57+
/// Gets or set the raw query string used to create the query collection in Request.Query.
5858
/// </summary>
59-
/// <returns>The query string.</returns>
59+
/// <returns>The raw query string.</returns>
6060
public abstract QueryString QueryString { get; set; }
6161

6262
/// <summary>
63-
/// Gets the query value collection parsed from RequestQueryString.
63+
/// Gets the query value collection parsed from Request.QueryString.
6464
/// </summary>
65-
/// <returns>The query value collection parsed from RequestQueryString.</returns>
65+
/// <returns>The query value collection parsed from Request.QueryString.</returns>
6666
public abstract IQueryCollection Query { get; set; }
6767

6868
/// <summary>

0 commit comments

Comments
 (0)