HtmlWebLoad Method (String, String, Int32, String, String) |
Gets an HTML document from an Internet resource.
Namespace:
WorkflowGen.My.HtmlAgilityPack
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 8.0.6.0 (8.0.6.20210916)
Syntax public HtmlDocument Load(
string url,
string proxyHost,
int proxyPort,
string userId,
string password
)
Public Function Load (
url As String,
proxyHost As String,
proxyPort As Integer,
userId As String,
password As String
) As HtmlDocument
Parameters
- url
- Type: SystemString
The requested URL, such as "http://Myserver/Mypath/Myfile.asp". - proxyHost
- Type: SystemString
Host to use for Proxy - proxyPort
- Type: SystemInt32
Port the Proxy is on - userId
- Type: SystemString
User Id for Authentication - password
- Type: SystemString
Password for Authentication
Return Value
Type:
HtmlDocumentA new HTML document.
See Also