如何獲取上傳圖像(IFormFile)的文件流並調整其大小? public ActionResult Upload(IFormFile file)
{
using (var reader = new StreamReader(file.OpenReadStream()))
{
var fileContent = reader.ReadToEnd();
我有一個控制器返回一個自定義的XML字符串,因爲使用Api的應用程序需要一個沒有任何屬性的特定格式,並且沒有默認XML字符串上的<?xml ... />標籤。 編輯:消費者也沒有要求'text/xml'的請求標頭。 我在我的Startup.cs ConfigureServices看起來是這樣的: public void ConfigureServices(IServiceCollection se