UploadStringCompletedEventHandler Delegate
.NET Framework (current version)
Represents the method that will handle the UploadStringCompleted event of a WebClient.
Assembly: System (in System.dll)
Public Delegate Sub UploadStringCompletedEventHandler ( sender As Object, e As UploadStringCompletedEventArgs )
Parameters
- sender
-
Type:
System.Object
The source of the event.
- e
-
Type:
System.Net.UploadStringCompletedEventArgs
A UploadStringCompletedEventArgs containing event data.
When you create a UploadStringCompletedEventHandler delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see NIB: Events and Delegates.
The following code example demonstrates asynchronously uploading a string.
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
The following method is called when the upload completes.
.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: