HtmlFormLoad Method (Uri, String, String) |
Note: This API is now obsolete.
Loads the form specified by identifying attributes on the page at the specified URL.
Namespace:
NScrape.Forms
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax [ObsoleteAttribute("Please use Load( Uri, KeyValuePair<string, string> ) instead.")]
public void Load(
Uri formUrl,
string attribute,
string attributeValue
)
<ObsoleteAttribute("Please use Load( Uri, KeyValuePair<string, string> ) instead.")>
Public Sub Load (
formUrl As Uri,
attribute As String,
attributeValue As String
)
public:
[ObsoleteAttribute(L"Please use Load( Uri, KeyValuePair<string, string> ) instead.")]
void Load(
Uri^ formUrl,
String^ attribute,
String^ attributeValue
)
[<ObsoleteAttribute("Please use Load( Uri, KeyValuePair<string, string> ) instead.")>]
member Load :
formUrl : Uri *
attribute : string *
attributeValue : string -> unit
Parameters
- formUrl
- Type: SystemUri
Contains the URL of the page containing the form. - attribute
- Type: SystemString
Contains the form attribute to be used to identify the form to load. - attributeValue
- Type: SystemString
Contains the form attribute value to be used to identify the form to load.
Remarks See Also