HtmlFormLoad Method (Uri, Int32) |
Loads the form specified by ordinal on the page at the specified URL.
Namespace:
NScrape.Forms
Assembly:
NScrape (in NScrape.dll) Version: 0.4.1.0
Syntax public void Load(
Uri formUrl,
int formOrdinal = 0
)
Public Sub Load (
formUrl As Uri,
Optional formOrdinal As Integer = 0
)
public:
void Load(
Uri^ formUrl,
int formOrdinal = 0
)
member Load :
formUrl : Uri *
?formOrdinal : int
(* Defaults:
let _formOrdinal = defaultArg formOrdinal 0
*)
-> unit
Parameters
- formUrl
- Type: SystemUri
Contains the URL of the page containing the form. - formOrdinal (Optional)
- Type: SystemInt32
Contains the zero-based ordinal of the form to load.
Remarks
The specified (zero-based ordinal) form in the page shall be loaded.
See Also