HttpContext.Current.Request.Form.AllKeys ASP.NET 核心版本

HttpContext.Current.Request.Form.AllKeys in ASP.NET CORE version

foreach (string key in HttpContext.Current.Request.Form.AllKeys)
{
   string value = HttpContext.Current.Request.Form[key];
}

以上代码的.net core版本是多少?似乎 .net 核心取出了 AllKeys 并用 Keys 代替了它。我尝试把上面的代码转成.net core的方式,但是却抛出了一个无效操作异常。

HttpContext.Request.Form = 'HttpContext.Request.Form' threw an exception of type 'System.InvalidOperationException'

转换后的代码:

foreach (string key in HttpContext.Request.Form.Keys)
{      
}

你可以使用这个:

var dict = Request.Form.ToDictionary(x => x.Key, x => x.Value.ToString());

在这种情况下,您可以遍历字典或直接访问值:

dict["Hello"] = "World"
var data = Request.Form.ToDictionary(x => x.Key, x => x.Value.ToString());

foreach (var item in data)
{
    if (item.Key.Contains("hello"))
    {
        // ?
    }
    else if (item.Key.Contains("world"))
    {
        // ?
    }
}