我没有在ASP.NET的核心版本中找到它。
我找到了这个链接:http://www.c-sharpcorner.com/article/uploading-image-to-server-using-web-api-2-0/
但是Core版本中的每一行都是错误的。
我得到了当前的背景:
var httpRequest = HttpContext.Request;
答案 0 :(得分:2)
您可以通过任何客户端的表单数据发送它,并将其置于此类
的操作中[HttpPost]
public IActionResult MyAction([FromForm] IFormFile file)
{
}
您可以从参数访问它,或者您可以使用
Request.Form.Files