WebClient::DownloadData Method (Uri^)
Downloads the resource as a Byte array from the URI specified.
Assembly: System (in System.dll)
Parameters
- address
-
Type:
System::Uri^
The URI represented by the Uri object, from which to download data.
| Exception | Condition |
|---|---|
| ArgumentNullException | The address parameter is null. |
The DownloadData method downloads the resource with the URI specified by the address parameter. This method blocks while downloading the resource. To download a resource and continue executing while waiting for the server's response, use one of the DownloadDataAsync methods.
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.
This method uses the RETR command to download an FTP resource. For an HTTP resource, the GET method is used.
Note This member outputs trace information when you enable network tracing in your application. For more information, see Network Tracing in the .NET Framework.
Available since 2.0