I'm quite familiar with using the APM with classes that support the APM. However the HttpWebRequest class has a nuance that I've not noticed in any other class. And to add to the confusion, anytime I see code that uses the HttpWebRequest in an asynchronous manner it skips over the question that I have.
So here goes: When doing a POST using the HttpWebRequest class there are essentially two methods that need to be called asynchronously.
- BeginGetRequestStream/EndGetRequestStream
- BeginGetResponse/EndGetResponse
Most of the code I see skips over calling the first and only calls the second. Examples of using Tasks and the Task.Factory.FromAsync method also "conveniently" skip over this.
I know that the connection is being established when the BeginGetRequestStream method is called. Which is I/O bound and takes a certain amount of time.
So my questions are: If one was interested in doing this the right way:
- Shouldn't one call the Begin/End GetRequestStream methods and then call the BeginGetResponse also?
- Using Task.Factory.FromAsync, is there an easy way to call both these methods? Other than FromAsync, then continue with and to another FromAsync?