WebClient.UploadStringCompleted Event
Assembly: System (in system.dll)
This event is raised each time an asynchronous string upload operation completes. Asynchronous string uploads are started by calling the UploadStringAsync methods.
The UploadStringCompletedEventHandler is the delegate for this event. The UploadStringCompletedEventArgs 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 UploadStringInBackground2 (string address) { WebClient client = new WebClient (); Uri uri = new Uri(address); string data = "Time = 12:00am temperature = 50"; client.UploadStringCompleted += new UploadStringCompletedEventHandler (UploadStringCallback2); client.UploadStringAsync (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.