Skip to content

Commit 7e57363

Browse files
committed
Make other FormReader.ReadForm return Dictionary.
1 parent 3c2e2b9 commit 7e57363

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.AspNet.WebUtilities/FormReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ private async Task BufferAsync(CancellationToken cancellationToken)
165165
/// </summary>
166166
/// <param name="text">The HTTP form body to parse.</param>
167167
/// <returns>The collection containing the parsed HTTP form body.</returns>
168-
public static IDictionary<string, StringValues> ReadForm(string text)
168+
public static Dictionary<string, StringValues> ReadForm(string text)
169169
{
170170
var reader = new FormReader(text);
171171

0 commit comments

Comments
 (0)