Downloads the specified resource as a Byte array. This method does not block the calling thread.
Namespace:
System.Net
Assembly:
System (in System.dll)
Visual Basic (Declaration)
<HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading := True)> _
Public Sub DownloadDataAsync ( _
address As Uri _
)
Dim instance As WebClient
Dim address As Uri
instance.DownloadDataAsync(address)
[HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading = true)]
public void DownloadDataAsync(
Uri address
)
[HostProtectionAttribute(SecurityAction::LinkDemand, ExternalThreading = true)]
public:
void DownloadDataAsync(
Uri^ address
)
public function DownloadDataAsync(
address : Uri
)
| Exception | Condition |
|---|
| WebException | The URI formed by combining BaseAddress and address is invalid. -or- An error occurred while downloading the resource. |
This method retrieves the specified resource using the default method for the protocol associated with the URI scheme specified in address. The data is downloaded asynchronously using thread resources that are automatically allocated from the thread pool.
This method does not block the calling thread while downloading the resource. To download a resource and block while waiting for the server's response, use one of the DownloadData methods. When the download completes, the DownloadDataCompleted event is raised. Your application must handle this event to receive notification. The downloaded data is available in the Result property.
You can use the CancelAsync method to cancel asynchronous operations that have not completed.
This method uses the RETR command to download an FTP resource. For an HTTP resource, the GET method is used.
If the BaseAddress property is not an empty string ("") and address does not contain an absolute URI, address must be a relative URI that is combined with BaseAddress to form the absolute URI of the requested data. If the QueryString property is not an empty string, it is appended to address.
Note: |
|---|
This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing. |
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0
Reference