Click or drag to resize

BinaryWebResponse Constructor (Boolean, Uri, Byte)

Note: This API is now obsolete.

Initializes a new instance of the BinaryWebResponse class.

Namespace:  NScrape
Assembly:  NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax
[ObsoleteAttribute("Please use BinaryWebResponse( bool, HttpWebResponse ) instead.")]
public BinaryWebResponse(
	bool success,
	Uri responseUrl,
	byte[] data
)

Parameters

success
Type: SystemBoolean
true if the response is considered successful, false otherwise.
responseUrl
Type: SystemUri
The URL of the response.
data
Type: SystemByte
The data that was returned by the web server.
Remarks
Deprecated; please use BinaryWebResponse(Boolean, HttpWebResponse) instead.
See Also