UtilWebDownloadWebpageAsXml(Uri, String, Encoding) Method
Downloads the source-code of an Url that points to an Html document, then transforms it to Xml.
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 XDocument DownloadWebpageAsXml(
Uri uri,
string userAgent,
Encoding enc
)
Public Shared Function DownloadWebpageAsXml (
uri As Uri,
userAgent As String,
enc As Encoding
) As XDocument
Dim uri As Uri
Dim userAgent As String
Dim enc As Encoding
Dim returnValue As XDocument
returnValue = UtilWeb.DownloadWebpageAsXml(uri,
userAgent, enc)
public:
static XDocument^ DownloadWebpageAsXml(
Uri^ uri,
String^ userAgent,
Encoding^ enc
)
static member DownloadWebpageAsXml :
uri : Uri *
userAgent : string *
enc : Encoding -> XDocument
No code example is currently available or this language may not be supported.
- uri Uri
-
The Uri address.
- userAgent String
-
Specifies a custom user-agent to perform the web request.
- enc Encoding
-
The Encoding used to read the webpage.
XDocument
The resulting source-code.
This is a code example.
No code example is currently available or this language may not be supported.
Dim xml As XDocument = DownloadWebpageAsXml(New Uri("http://www.elhacker.net/"), "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)", 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.