Alternative method for HttpResponse.TransmitFile in ASP.NET Core
Since I want to realize downloading large size file (> 4GB) from my ASP.NET Core backend, many articles point out that HttpResponse.TransmitFile in the .NET Framework could achieve my goal. However, it seems that HttpResponse.TransmitFile is no longer available in…