DownloadProgressChangedEventHandler Delegate
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents the method that will handle the WebClient::DownloadProgressChanged event of a WebClient.
Assembly: System.Net (in System.Net.dll)
Parameters
- sender
- Type: System::Object
The source of the event.
- e
- Type: System.Net::DownloadProgressChangedEventArgs
A DownloadProgressChangedEventArgs containing event data.
When you create a DownloadProgressChangedEventHandler 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.
Note: |
|---|
If the server does not send the size of the downloaded file (such as in the case of a passive FTP connection), ProgressPercentage may always be zero. |
Capabilities
If you use this API in your app, you must specify the following capabilities in the app manifest. Otherwise, your app might not work correctly or it might exit unexpectedly.
ID_CAP_NETWORKING | Windows Phone 8, Windows Phone OS 7.1 |
For more info, see App capabilities and hardware requirements for Windows Phone 8.
Note: