I am new in Asp .Net core.
what is BinaryWrite()
method for httpResponse
in .NetCore ?
Also I need Flush()
and End()
in .NetCore But I can't find it.
I am new in Asp .Net core.
what is BinaryWrite()
method for httpResponse
in .NetCore ?
Also I need Flush()
and End()
in .NetCore But I can't find it.
You likely need SendFileAsync you might need to install another nuget package to get it Microsoft.AspNetCore.http.Extensions
For example:
response.SendFileAsync(fileNameFullPath);