Code exemple:
HttpWebRequest request =
(HttpWebRequest)HttpWebRequest.Create(\"http://some.existing.url\");
request.Method = \"POST\";
request.ContentType
Getting the request stream does not trigger the post, but closing the stream does. Post data is sent to the server in the following way:
The act of flushing and closing the stream is the final step, and once the input stream is closed (i.e. the client has sent what it needs to the server), then the server can return a response.