System.Net.WebClient.UploadData Method

Uploads a data buffer to a resource identified by a URI.

Syntax

public byte[] UploadData (string address, byte[] data)

Parameters

address
The URI of the resource to receive the data.
data
The data buffer to send to the resource.

Returns

A byte array containing the body of the response from the resource.

Exceptions

TypeReason
System.Net.WebException

The absolute URI is not valid.

-or-

data is null.

-or-

An error occurred while opening the stream or uploading the data.

-or-

There was no response from the server hosting the resource.

Remarks

The WebClient.UploadData(string, Byte[]) method sends a data buffer to a resource.

This method uses the STOR command to upload an FTP resource. For an HTTP resource, the POST method is used. If the underlying request is not understood by the server, the underlying protocol classes determine what occurs. Typically, a System.Net.WebException is thrown with the WebException.Status property set to indicate the error.

The WebClient.UploadData(string, Byte[]) method sends the content of data to the server without encoding it. This method blocks while uploading the data. To continue executing while waiting for the server's response, use one of the erload:System.Net.WebClient.UploadDataAsync methods.

If the WebClient.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 WebClient.BaseAddress to form the absolute URI of the requested data. If the WebClient.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.

Requirements

Namespace: System.Net
Assembly: System (in System.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0