From 7e573631f7144dbe0655a8e247cbd553e27045a5 Mon Sep 17 00:00:00 2001 From: Chris R Date: Mon, 2 Nov 2015 15:56:06 -0800 Subject: [PATCH] Make other FormReader.ReadForm return Dictionary. --- src/Microsoft.AspNet.WebUtilities/FormReader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.AspNet.WebUtilities/FormReader.cs b/src/Microsoft.AspNet.WebUtilities/FormReader.cs index 554b86e7b6..fe86ee56aa 100644 --- a/src/Microsoft.AspNet.WebUtilities/FormReader.cs +++ b/src/Microsoft.AspNet.WebUtilities/FormReader.cs @@ -165,7 +165,7 @@ namespace Microsoft.AspNet.WebUtilities /// /// The HTTP form body to parse. /// The collection containing the parsed HTTP form body. - public static IDictionary ReadForm(string text) + public static Dictionary ReadForm(string text) { var reader = new FormReader(text);