WebClient.DownloadDataCompleted Event
.NET Framework 3.0
Occurs when an asynchronous data download operation completes.
Namespace: System.Net
Assembly: System (in system.dll)
Assembly: System (in system.dll)
'Declaration Public Event DownloadDataCompleted As DownloadDataCompletedEventHandler 'Usage Dim instance As WebClient Dim handler As DownloadDataCompletedEventHandler AddHandler instance.DownloadDataCompleted, handler
/** @event */ public void add_DownloadDataCompleted (DownloadDataCompletedEventHandler value) /** @event */ public void remove_DownloadDataCompleted (DownloadDataCompletedEventHandler 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 data download operation completes. Asynchronous data downloads are started by calling the DownloadDataAsync methods.
The DownloadDataCompletedEventHandler is the delegate for this event. The DownloadDataCompletedEventArgs 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.
' Sample call : DownLoadDataInBackground ("http:' www.contoso.com/GameScores.html") Public Shared Sub DownloadDataInBackground(ByVal address As String) Dim waiter As System.Threading.AutoResetEvent = New System.Threading.AutoResetEvent(False) Dim client As WebClient = New WebClient() ' Specify that the DownloadDataCallback method gets called ' when the download completes. AddHandler client.DownloadDataCompleted, AddressOf DownloadDataCallback Dim uri as Uri = New Uri(address) client.DownloadDataAsync(uri, waiter) ' Block the main application thread. Real applications ' can perform other tasks while waiting for the download to complete. waiter.WaitOne() 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: