UtilWebDownloadDataAsync(String) Method
Asynchronously downloads the specified resource as a Byte array
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 Task<byte[]> DownloadDataAsync(
string url
)
Public Shared Function DownloadDataAsync (
url As String
) As Task(Of Byte())
Dim url As String
Dim returnValue As Task(Of Byte())
returnValue = UtilWeb.DownloadDataAsync(url)
public:
static Task<array<unsigned char>^>^ DownloadDataAsync(
String^ url
)
static member DownloadDataAsync :
url : string -> Task<byte[]>
No code example is currently available or this language may not be supported.
- url String
-
The url to download.
TaskByte
The resource data.
This is a code example.
No code example is currently available or this language may not be supported.
Dim data As Byte() = Await DownloadDataAsync("http://download.thinkbroadband.com/5MB.zip")
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.