chunked-encoding

Disable support for chunked encoding

Is there a way to disable chunked encoding support in a browser? ...

Can I tell WebRequest when to send a chunk from the request stream?

I'm sending an HTTP PUT request from a WinForms application and I'd like to send a slow trickle of PUT data to the page that will write messages into a database as the PUT data arrives. I'm using WebRequest and I've set SendChunked to true, but it only seems to send a chunk after 8KB of data have been written to the request stream. Even...