Name | Description | |
---|---|---|
ProgressMonitorStack Constructor | Create a new monitor stack to monitor a process. |
The following tables list the members exposed by ProgressMonitorStack.
Name | Description | |
---|---|---|
ProgressMonitorStack Constructor | Create a new monitor stack to monitor a process. |
Name | Description | |
---|---|---|
DefaultMaximumSteps | The default maximum number of steps for tracking progress if not otherwise specified. |
Name | Description | |
---|---|---|
Complete | Explicitly indicate the entire monitor stack is complete | |
CompletedSteps | The number of completed steps (between zero and the maximum number of steps). | |
Count | The current number of monitors in the stack | |
IsCanceled | Indicates if the progress monitor stack was canceled. | |
MaximumSteps | The current maximum number of steps. | |
StatusMessage | A user display message for the current status. | |
Title | An end-user display title of the overall process being monitored |
Name | Description | |
---|---|---|
Cancel | Request to cancel the monitor stack. | |
Dispose | Overloaded. Consider the monitor stack complete and prepare it for immediate disposal. | |
NewMonitor | Create a new monitor with the specified owning object, status, and number of steps |
Name | Description | |
---|---|---|
OnCanceled | Raised by the progress monitor stack when canceling the operation being monitored/ | |
OnChanged | Called when the ProgressMonitor that is the top monitor is changed. | |
OnCompleted | Called to raise the Completed event when the task being monitored has been completed. | |
OnUpdated | Called to raise the Updated event whenever the progress information (message, steps, etc.) is updated. | |
UpdateProgress | Called whenever the information that drives progress should be updated. |
Name | Description | |
---|---|---|
Canceled | Raised when the monitor stack is cancelled. No complete event will then be raised. | |
Changed | Raised whenever a monitor object is pushed or popped from the stack, effectively changing what monitor is on the top of the stack. | |
Completed | Raised when the monitor stack completes. | |
Updated | Raised when the progress information is updated. |