WebClient.OpenWriteCompleted Event
Assembly: System (in system.dll)
This event is raised each time an asynchronous operation to open a stream that is used to send data to a resource completes. These operations are started by calling the OpenWriteAsync methods.
The OpenWriteCompletedEventHandler is the delegate for this event. The OpenWriteCompletedEventArgs class provides the event handler with event data.
For more information about handling events, see Consuming Events.
The following code example demonstrates setting an event handler for this event.
public static void OpenResourceForWriting2 (string address) { WebClient client = new WebClient (); Uri uri = new Uri(address); // Specify that the OpenWriteCallback method gets called // when the writeable stream is available. client.OpenWriteCompleted += new OpenWriteCompletedEventHandler (OpenWriteCallback2); client.OpenWriteAsync (uri, "POST"); // Applications can perform other tasks // while waiting for the upload to complete. }
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.