I could and fixed itCan you confirm this?
I don't exactly know how to understand this. Does it say use: "httpContext.Response.Headers[HeaderNames.TransferEncoding] = "chunked";" in the response for it to become chunked? Or do I need to do it during setup like you did with json date formatting? I did try the former but that did not work.Does this help
as I understood it: yes"httpContext.Response.Headers[HeaderNames.TransferEncoding] = "chunked";" in the response for it to become chunked?
Also using WriteAsync()?! Because the current send methods are using Write().I did try the former but that did not work.
No, I get the same exception with WriteAsync.Also using WriteAsync()?! Because the current send methods are using Write().
Didn't even know they exist So I learned something newI think i manually need to add the start and end delimiters for chunked transfers like shown in your first link.