HtmlFormSubmitRequest Method (String, Boolean, WebResponseType) |
Submits the form, specifying the request data, redirection action, and a range of valid response types.
Namespace:
NScrape.Forms
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax protected WebResponse SubmitRequest(
string requestData,
bool autoRedirect,
WebResponseType[] validTypes
)
Protected Function SubmitRequest (
requestData As String,
autoRedirect As Boolean,
validTypes As WebResponseType()
) As WebResponse
protected:
WebResponse^ SubmitRequest(
String^ requestData,
bool autoRedirect,
array<WebResponseType>^ validTypes
)
member SubmitRequest :
requestData : string *
autoRedirect : bool *
validTypes : WebResponseType[] -> WebResponse
Parameters
- requestData
- Type: SystemString
Contains the request data in application/x-www-form-urlencoded format. - autoRedirect
- Type: SystemBoolean
true if the request should be automatically redirected; false otherwise. - validTypes
- Type: NScrapeWebResponseType
Contains a list of acceptable response types.
Return Value
Type:
WebResponseThe response from the server.
Remarks
This overload allows all form request options to be specified.
See Also