Click or drag to resize

WebClientSendRequest Method (Uri, String)

Sends a POST request.

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

Parameters

destination
Type: SystemUri
Specifies the destination of the request.
requestData
Type: SystemString
Contains the request data in application/x-www-form-urlencoded format.

Return Value

Type: WebResponse
The response from the server.

Return Value

Type: WebResponse
The response from the server.

Implements

IWebClientSendRequest(Uri, String)
Remarks
Sends a POST request that shall be automatically redirected if applicable.
Examples
var webClient = new WebClient();

var uri = new Uri( "http://www.foo.com" );
var data = "step=confirmation&rt=L&rp=%2Flogin%2Fhome&p=0&inputEmailHandle=foo&inputPassword=bar";

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

}
See Also