IWebClientSendRequest Method (Uri, Boolean) |
Sends a GET request, specifying redirection.
Namespace:
NScrape
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax WebResponse SendRequest(
Uri destination,
bool autoRedirect
)
Function SendRequest (
destination As Uri,
autoRedirect As Boolean
) As WebResponse
WebResponse^ SendRequest(
Uri^ destination,
bool autoRedirect
)
abstract SendRequest :
destination : Uri *
autoRedirect : bool -> WebResponse
Parameters
- destination
- Type: SystemUri
Specifies the destination of the request. - autoRedirect
- Type: SystemBoolean
true if the request should be automatically redirected; false otherwise.
Return Value
Type:
WebResponseThe response from the server.
Remarks
Sends a GET request, specifying whether the request 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, false ) ) {
}
See Also