FileResult In ASP.NET Core MVC

PHOTO EMBED

Mon Nov 01 2021 08:51:28 GMT+0000 (Coordinated Universal Time)

Saved by @level48

public FileStreamResult CreateFile()  
{  
   var stream = new MemoryStream(Encoding.ASCII.GetBytes("Hello World"));  
   return new FileStreamResult(stream, new MediaTypeHeaderValue("text/plain"))  
   {  
      FileDownloadName = "test.txt"  
   };  
}  
content_copyCOPY

https://www.c-sharpcorner.com/article/fileresult-in-asp-net-core-mvc2/