NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

WebRequest.EndGetRequestStream

Returns a System.Net.Stream object that is used for writing data to the resource identified by RequestURI.

[Visual Basic]
Overridable Public Function EndGetRequestStream( _
   ByVal AsyncResult As IAsyncResult _
) As Stream
[C#]
public virtual Stream EndGetRequestStream(
   IAsyncResult AsyncResult
);
[C++]
public: virtual Stream* EndGetRequestStream(
   IAsyncResult* AsyncResult
);
[JScript]
public function EndGetRequestStream(
   AsyncResult : IAsyncResult
) : Stream;

Parameters

AsyncResult
[To be supplied.]

Return Value

Stream

Remarks

Tip   Close the response stream to avoid timing issues with garbage collection. To close the response stream, call the Close method on the stream returned by GetResponseStream after calling System.Net.WebResponse.EndGetResponse.

See Also

WebRequest Class | WebRequest Members | System.Net Namespace