HttpWebRequest::EndGetRequestStream Method (IAsyncResult^, TransportContext^%)
Ends an asynchronous request for a Stream object to use to write data and outputs the TransportContext associated with the stream.
Assembly: System (in System.dll)
public:
Stream^ EndGetRequestStream(
IAsyncResult^ asyncResult,
[OutAttribute] TransportContext^% context
)
Parameters
- asyncResult
-
Type:
System::IAsyncResult^
The pending request for a stream.
- context
-
Type:
System.Net::TransportContext^%
The TransportContext for the Stream.
| Exception | Condition |
|---|---|
| ArgumentException | asyncResult was not returned by the current instance from a call to BeginGetRequestStream. |
| ArgumentNullException | asyncResult is null. |
| InvalidOperationException | This method was called previously using asyncResult. |
| IOException | The request did not complete, and no stream is available. |
| WebException |
The EndGetRequestStream method completes an asynchronous request for a stream that was started by the BeginGetRequestStream method and outputs the TransportContext associated with the stream. After the Stream object has been returned, you can send data with the HttpWebRequest by using the Stream::Write method.
Some applications that use integrated Windows authentication with extended protection may need to be able to query the transport layer used by HttpWebRequest in order to retrieve the channel binding token (CBT) from the underlying TLS channel. The GetRequestStream method provides access to this information for HTTP methods which have a request body (POST and PUT requests). This is only needed if the application is implementing its own authentication and needs access to the CBT.
Note |
|---|
If an application needs to set the value of the ContentLength property, then this must be done before retrieving the stream and writing data to it. |
Caution |
|---|
You must call the Stream::Close method to close the stream and release the connection for reuse. Failure to close the stream causes your application to run out of connections. |
Note |
|---|
This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework. |
Available since 2.0

