HtmlFormLoad Method (Uri, String, KeyValuePairString, String) |
Loads the form specified by identifying attribute in the provided HTML.
Namespace:
NScrape.Forms
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax public void Load(
Uri formUrl,
string formHtml,
KeyValuePair<string, string> identifyingAttribute
)
Public Sub Load (
formUrl As Uri,
formHtml As String,
identifyingAttribute As KeyValuePair(Of String, String)
)
public:
void Load(
Uri^ formUrl,
String^ formHtml,
KeyValuePair<String^, String^> identifyingAttribute
)
member Load :
formUrl : Uri *
formHtml : string *
identifyingAttribute : KeyValuePair<string, string> -> unit
Parameters
- formUrl
- Type: SystemUri
Contains the URL where the page containing the form resides. - formHtml
- Type: SystemString
Contains the HTML text containing the form. - identifyingAttribute
- Type: System.Collections.GenericKeyValuePairString, String
Contains the form attribute/value to be used to identify the form to load.
Remarks
The form identified by the specified attribute/value in the provided HTML text shall be loaded.
See Also