Make other FormReader.ReadForm return Dictionary.

This commit is contained in:
Chris R 2015-11-02 15:56:06 -08:00
parent 3c2e2b9d98
commit 7e573631f7
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ namespace Microsoft.AspNet.WebUtilities
/// </summary>
/// <param name="text">The HTTP form body to parse.</param>
/// <returns>The collection containing the parsed HTTP form body.</returns>
public static IDictionary<string, StringValues> ReadForm(string text)
public static Dictionary<string, StringValues> ReadForm(string text)
{
var reader = new FormReader(text);