WebClient::UploadStringCompleted Event
.NET Framework (current version)
Occurs when an asynchronous string-upload operation completes.
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 NIB: Consuming Events.
The following code example demonstrates setting an event handler for this event.
void UploadStringInBackground2( String^ address ) { WebClient^ client = gcnew WebClient; Uri ^uri = gcnew Uri(address); String^ data = "Time = 12:00am temperature = 50"; client->UploadStringCompleted += gcnew UploadStringCompletedEventHandler( UploadStringCallback2 ); client->UploadStringAsync( uri, data ); }
.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: