WebClient.UploadDataCompleted Event
Assembly: System (in system.dll)
This event is raised each time an asynchronous data upload operation completes. Asynchronous data uploads are started by calling the UploadDataAsync methods.
The UploadDataCompletedEventHandler is the delegate for this event. The UploadDataCompletedEventArgs 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 UploadDataInBackground3 (string address) { WebClient client = new WebClient (); Uri uri = new Uri(address); string text = "Time = 12:00am temperature = 50"; byte[] data = System.Text.Encoding.UTF8.GetBytes (text); client.UploadDataCompleted += new UploadDataCompletedEventHandler (UploadDataCallback3); client.UploadDataAsync (uri, data); }
Windows 98, Windows Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.