WebClient.UploadDataTaskAsync Method (String, String, Byte[])
Uploads a data buffer that contains a Byte array to the URI specified as an asynchronous operation using a task object.
Namespace: System.Net
Assembly: System (in System.dll)
[ComVisibleAttribute(false)] [HostProtectionAttribute(SecurityAction.LinkDemand, ExternalThreading = true)] public Task<byte[]> UploadDataTaskAsync( string address, string method, byte[] data )
Parameters
- address
- Type: System.String
The URI of the resource to receive the data.
- method
- Type: System.String
The method used to send the data to the resource. If null, the default is POST for http and STOR for ftp.
- data
- Type: System.Byte[]
The data buffer to send to the resource.
Return Value
Type: System.Threading.Tasks.Task<Byte[]>Returns Task<TResult>.
The task object representing the asynchronous operation. The Result property on the task object returns a Byte array containing the body of the response received from the resource when the data buffer was uploaded.
| Exception | Condition |
|---|---|
| ArgumentNullException | The address parameter is null. |
| WebException | The URI formed by combining BaseAddress and address is invalid. -or- An error occurred while opening the stream. -or- There was no response from the server hosting the resource. |
This operation will not block. The returned Task<TResult> object will complete after the a data buffer has been uploaded to the resource.
This method sends a data buffer to a resource. The data buffer is sent asynchronously using thread resources that are automatically allocated from the thread pool. The data is not encoded.
Asynchronous operations that have not completed can be canceled using the CancelAsync method.
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. |
Note |
|---|
The HostProtectionAttribute attribute applied to this type or member has the following Resources property value: ExternalThreading. The HostProtectionAttribute does not affect desktop applications (which are typically started by double-clicking an icon, typing a command, or entering a URL in a browser). For more information, see the HostProtectionAttribute class or SQL Server Programming and Host Protection Attributes. |
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note