IManagementUIService.StopProgress(Object) 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.
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;