UtilWebDownloadWebpage(String, KeyValuePairString, String) Method
Downloads the source-code of an Url that points to an Html document.
Namespace: DevCase.Core.Networking.CommonAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static string DownloadWebpage(
string url,
params KeyValuePair<string, string>[] additionalHeaders
)
Public Shared Function DownloadWebpage (
url As String,
ParamArray additionalHeaders As KeyValuePair(Of String, String)()
) As String
Dim url As String
Dim additionalHeaders As KeyValuePair(Of String, String)()
Dim returnValue As String
returnValue = UtilWeb.DownloadWebpage(url,
additionalHeaders)
public:
static String^ DownloadWebpage(
String^ url,
... array<KeyValuePair<String^, String^>>^ additionalHeaders
)
static member DownloadWebpage :
url : string *
additionalHeaders : KeyValuePair<string, string>[] -> string
No code example is currently available or this language may not be supported.
- url String
-
The Url address.
- additionalHeaders KeyValuePairString, String
-
Specifies custom headers to perform the web request.
String
The resulting source-code.
This is a code example.
No code example is currently available or this language may not be supported.
Dim html As String = DownloadWebpage("http://www.elhacker.net/", New KeyValuePair(Of String, String)("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)"))
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.