System.Net.WebClient.OpenWriteAsync Method

Opens a stream for writing data to the specified resource. This method does not block the calling thread.

Syntax

public void OpenWriteAsync (Uri address)

Parameters

address
The URI of the resource to receive the data.

Remarks

This method retrieves a writable stream that is used to send data to a resource. The stream is retrieved using thread resources that are automatically allocated from the thread pool. To receive notification when the stream is available, add an event handler to the WebClient.OpenWriteCompleted event. When you close the stream, the thread blocks until the request is sent to address and a response is received.

This method does not block the calling thread while the stream is being opened. To block while waiting for the stream, use one of the erload:System.Net.WebClient.OpenWrite 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.

This method uses the STOR command to upload an FTP resource. For an HTTP resource, the POST method is used.

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: 2.0.0.0, 4.0.0.0