BaseTaskForm.StopTaskProgress Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the cursor to the default value and enables the Content View page in IIS Manager.
protected:
virtual void StopTaskProgress();
protected virtual void StopTaskProgress ();
abstract member StopTaskProgress : unit -> unit
override this.StopTaskProgress : unit -> unit
Protected Overridable Sub StopTaskProgress ()
Examples
The following example overrides the StopTaskProgress method.
protected override void StopTaskProgress() {
base.StopTaskProgress();
MyStopTaskProgress();
InvalidateTask( true);
}
Remarks
The following members call the StopTaskProgress method:
The System.ComponentModel.RunWorkerCompletedEventHandler delegate.
The DisplayErrorMessage method.
The System.ComponentModel.RunWorkerCompletedEventHandler delegate that is initialized in the StartAsyncTask method.
The CancelAsyncTask method.