UtilWebDownloadWebpageAsXml(Uri, WebProxy, KeyValuePairString, String) 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,
WebProxy proxy,
params KeyValuePair<string, string>[] additionalHeaders
)
Public Shared Function DownloadWebpageAsXml (
uri As Uri,
proxy As WebProxy,
ParamArray additionalHeaders As KeyValuePair(Of String, String)()
) As XDocument
Dim uri As Uri
Dim proxy As WebProxy
Dim additionalHeaders As KeyValuePair(Of String, String)()
Dim returnValue As XDocument
returnValue = UtilWeb.DownloadWebpageAsXml(uri,
proxy, additionalHeaders)
public:
static XDocument^ DownloadWebpageAsXml(
Uri^ uri,
WebProxy^ proxy,
... array<KeyValuePair<String^, String^>>^ additionalHeaders
)
static member DownloadWebpageAsXml :
uri : Uri *
proxy : WebProxy *
additionalHeaders : KeyValuePair<string, string>[] -> XDocument
No code example is currently available or this language may not be supported.
- uri Uri
-
The Uri address.
- proxy WebProxy
-
The proxy to use.
- additionalHeaders KeyValuePairString, String
-
Specifies custom headers to perform the web request.
XDocument
The resulting source-code.
This is a code example.
No code example is currently available or this language may not be supported.
Dim proxy As New WebProxy(Host:="myproxy address", Port:=800)
proxy.Credentials = New NetworkCredential("user", "pass")
Dim xml As XDocument = DownloadWebpageAsXml(New Uri("http://www.elhacker.net/"), proxy, 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.