HttpContext.Current.Request.Form.AllKeys in ASP.NET CORE version
Your could use this:
var dict = Request.Form.ToDictionary(x => x.Key, x => x.Value.ToString());
In that case, you can iterate over your dictionary or you can access values directly:
dict["Hello"] = "World"