HtmlWebLoad Method (String, String, WebProxy, NetworkCredential) |
Loads an HTML document from an Internet resource.
Namespace:
WorkflowGen.My.HtmlAgilityPack
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.3.0.0 (4.3.0.0)
Syntax public HtmlDocument Load(
string url,
string method,
WebProxy proxy,
NetworkCredential credentials
)
Public Function Load (
url As String,
method As String,
proxy As WebProxy,
credentials As NetworkCredential
) As HtmlDocument
Parameters
- url
- Type: SystemString
The requested URL, such as "http://Myserver/Mypath/Myfile.asp". - method
- Type: SystemString
The HTTP method used to open the connection, such as GET, POST, PUT, or PROPFIND. - proxy
- Type: System.NetWebProxy
Proxy to use with this request - credentials
- Type: System.NetNetworkCredential
Credentials to use when authenticating
Return Value
Type:
HtmlDocumentA new HTML document.
See Also