Make other FormReader.ReadForm return Dictionary.
This commit is contained in:
parent
3c2e2b9d98
commit
7e573631f7
|
|
@ -165,7 +165,7 @@ namespace Microsoft.AspNet.WebUtilities
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="text">The HTTP form body to parse.</param>
|
/// <param name="text">The HTTP form body to parse.</param>
|
||||||
/// <returns>The collection containing the parsed HTTP form body.</returns>
|
/// <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);
|
var reader = new FormReader(text);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue