IManagementUIService.StopProgress(Object) Method

Definition

Stops the progress indicator that is identified by the specified token.

public:
 void StopProgress(System::Object ^ token);
public void StopProgress (object token);
abstract member StopProgress : obj -> unit
Public Sub StopProgress (token As Object)

Parameters

token
Object

The object returned from the StartProgress(String, MethodInvoker) method.

Examples

The following example implements this method.

class MyUI_Srvc : IManagementUIService, IDisposable {

    private IDictionary _styles;
    private IManagementFrameHost _owner;
    private Stack<IWin32Window> _curWin;
    private ManagementUIColorTable _colourTbl;

    private object _currentProgressToken;
    private bool _rightToLeft; 

Applies to