Open
Description
I have an application that captures Web Request data for later playback (WebSurge). This works great for standard text based content be it API requests or captured form data - the data gets captured into the Request stream and I can grab it out of there. Works great.
However, if the data is multi-part form data with binary data, the Request.Content
is always null:
In contrast, here is a POST request with standard form data which does work and returns a Request.Content
stream:
So for some reason it looks if the data is multi-part or contains binary data the request content is not provided.