Updating QueryString doc comment

This commit is contained in:
John Luo 2016-01-08 19:28:34 -08:00
parent 6bc8384ea9
commit fa8c5cbb3a
1 changed files with 4 additions and 4 deletions

View File

@ -54,15 +54,15 @@ namespace Microsoft.AspNet.Http
public abstract PathString Path { get; set; }
/// <summary>
/// Gets or set the query string.
/// Gets or set the raw query string used to create the query collection in Request.Query.
/// </summary>
/// <returns>The query string.</returns>
/// <returns>The raw query string.</returns>
public abstract QueryString QueryString { get; set; }
/// <summary>
/// Gets the query value collection parsed from RequestQueryString.
/// Gets the query value collection parsed from Request.QueryString.
/// </summary>
/// <returns>The query value collection parsed from RequestQueryString.</returns>
/// <returns>The query value collection parsed from Request.QueryString.</returns>
public abstract IQueryCollection Query { get; set; }
/// <summary>