ThreadManager PerformStep Method CleanCode C# Libraries v1.2.03 API
Advances the current position of the OnlineToolStripProgressBar, if any.

Namespace: CleanCode.Threading
Assembly: CleanCode (in CleanCode.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public void PerformStep()
Remarks

This should be called within your ThreadWorker subclasses to display progress to the user, if you are using a progress bar. Each subclass should call this routine for each iteration it needs to do; the total of those iterations should equal the value returned by the ItemCount method required when subclassing ThreadWorker.
See Also