EventsObjectWrapper.FireProgress Method

Definition

Raises an event when measurable progress is made by the executable.

public:
 void FireProgress(System::String ^ progressDescription, int percentComplete, int progressCountLow, int progressCountHigh, System::String ^ subComponent, bool % fireAgain);
public void FireProgress (string progressDescription, int percentComplete, int progressCountLow, int progressCountHigh, string subComponent, ref bool fireAgain);
member this.FireProgress : string * int * int * int * string * bool -> unit
Public Sub FireProgress (progressDescription As String, percentComplete As Integer, progressCountLow As Integer, progressCountHigh As Integer, subComponent As String, ByRef fireAgain As Boolean)

Parameters

progressDescription
String

Describes the progress event that is raised.

percentComplete
Int32

An Integer used to indicate how much of the task has completed.

progressCountLow
Int32

An Integer that contains the low 32-bits of the units completed.

progressCountHigh
Int32

An Integer that contains the high 32-bits of the units completed.

subComponent
String

Contains more detail about the event source.

fireAgain
Boolean

True to continue firing; otherwise, false.

Applies to