You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hopefully this library will officially be ported to .NET Standard soon. jcaillon already did it, but there is a problem with the HttpResponse class, so maybe you can fix that early:
The FileHandler does not work in .NET Core, it returns the file content before the HTTP 1.1 ... status line and headers.
It can be fixed by inserting writer.Flush(); before await ContentStream.CopyToAsync(writer.BaseStream).ConfigureAwait(false); in HttpResponse.WriteBody.
The text was updated successfully, but these errors were encountered:
Hopefully this library will officially be ported to .NET Standard soon. jcaillon already did it, but there is a problem with the
HttpResponse
class, so maybe you can fix that early:The FileHandler does not work in .NET Core, it returns the file content before the
HTTP 1.1 ...
status line and headers.It can be fixed by inserting
writer.Flush();
beforeawait ContentStream.CopyToAsync(writer.BaseStream).ConfigureAwait(false);
inHttpResponse.WriteBody
.The text was updated successfully, but these errors were encountered: