Category: Asynchronous

Read and Write HTTP Requests and Responses asynchronously using ASP.NET 4.5

Posted on 3 min read

  With ASP.NET 4 – Microsoft has introduced the ability to read an HTTP request entity as a stream using the HttpRequest.GetBufferlessInputStream method. This method provides streaming access to the request entity. But this process happens synchronously because it was tied to a thread until the request is completed. Now with new ASP.NET 4.5 –… Continue reading