Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

InPlaceHostingManager::DownloadProgressChanged Event

 

Occurs when there is a change in the status of an application or manifest download.

Namespace:   System.Deployment.Application
Assembly:  System.Deployment (in System.Deployment.dll)

public:
event EventHandler<DownloadProgressChangedEventArgs^>^ DownloadProgressChanged {
	void add(EventHandler<DownloadProgressChangedEventArgs^>^ value);
	void remove(EventHandler<DownloadProgressChangedEventArgs^>^ value);
}

In a console application, events are assigned to threads from a thread pool. Therefore, you might receive progress update events out of order, with a subsequent event showing a decrease compared with a previous event. You will not see such behavior in a Windows Forms-based application, because events in Windows Forms are processed sequentially out of the user interface (UI) thread's message queue.

The following code example demonstrates how to update a ToolStripProgressBar that is contained within a StatusStrip.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft