Click or drag to resize

IWebClientSendRequest Method (Uri)

Sends a GET request.

Namespace:  NScrape
Assembly:  NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax
WebResponse SendRequest(
	Uri destination
)

Parameters

destination
Type: SystemUri
Specifies the destination of the request.

Return Value

Type: WebResponse
The response from the server.
Remarks
Sends a GET request that shall be automatically redirected if applicable.
Examples
var webClient = new WebClient();

var uri = new Uri( "http://www.foo.com" );

using ( var response = webClient.SendRequest( uri ) ) {

}
See Also