WebClient.UploadStringCompleted Event
.NET Framework 3.0
Occurs when an asynchronous string-upload operation completes.
Namespace: System.Net
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration Public Event UploadStringCompleted As UploadStringCompletedEventHandler 'Usage Dim instance As WebClient Dim handler As UploadStringCompletedEventHandler AddHandler instance.UploadStringCompleted, handler
/** @event */ public void add_UploadStringCompleted (UploadStringCompletedEventHandler value) /** @event */ public void remove_UploadStringCompleted (UploadStringCompletedEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
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 Shared Sub UploadStringInBackground2(ByVal address As String) Dim client As WebClient = New WebClient() Dim data As String = "Time = 12:00am temperature = 50" AddHandler client.UploadStringCompleted, AddressOf UploadStringCallback2 Dim uri as Uri = New Uri(address) client.UploadStringAsync(uri, data) End Sub
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.Community Additions
ADD
Show: