UtilWebDownloadWebpage(String, Encoding) 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,
Encoding enc
)
Public Shared Function DownloadWebpage (
url As String,
enc As Encoding
) As String
Dim url As String
Dim enc As Encoding
Dim returnValue As String
returnValue = UtilWeb.DownloadWebpage(url,
enc)
public:
static String^ DownloadWebpage(
String^ url,
Encoding^ enc
)
static member DownloadWebpage :
url : string *
enc : Encoding -> string
No code example is currently available or this language may not be supported.
- url String
-
The Url address.
- enc Encoding
-
The Encoding used to read the webpage.
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/", Encoding.UTF8)
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.