BinaryWebResponseGetResponseStream Method |
Gets the stream that is used to read the binary response.
Namespace:
NScrape
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax public Stream GetResponseStream()
Public Function GetResponseStream As Stream
public:
Stream^ GetResponseStream()
member GetResponseStream : unit -> Stream
Return Value
Type:
StreamA
Stream containing the binary response.
Remarks
The GetResponseStream method returns the binary data stream from the response.
Note |
---|
You must call either the Stream.Close or the Close method to close the stream and release the
connection for reuse. It is not necessary to call both Stream.Close and Close, but doing so does not cause an
error. Failure to close the stream can cause your application to run out of connections.
|
See Also