IDTSEvents.OnProgress 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.
Called to update progress about task execution.
public:
void OnProgress(Microsoft::SqlServer::Dts::Runtime::TaskHost ^ taskHost, System::String ^ progressDescription, int percentComplete, int progressCountLow, int progressCountHigh, System::String ^ subComponent, bool % fireAgain);
public void OnProgress (Microsoft.SqlServer.Dts.Runtime.TaskHost taskHost, string progressDescription, int percentComplete, int progressCountLow, int progressCountHigh, string subComponent, ref bool fireAgain);
abstract member OnProgress : Microsoft.SqlServer.Dts.Runtime.TaskHost * string * int * int * int * string * bool -> unit
Public Sub OnProgress (taskHost As TaskHost, progressDescription As String, percentComplete As Integer, progressCountLow As Integer, progressCountHigh As Integer, subComponent As String, ByRef fireAgain As Boolean)
Parameters
- taskHost
- TaskHost
A null value.
- progressDescription
- String
A string that 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
A string that contains more detail about the event source.
- fireAgain
- Boolean
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
Remarks
Called any time a task experiences measurable progress. Each task has its own requirements, but as a general rule, a task reports progress in increments of 1 percent. OnProgress is called by the task at predetermined intervals to update listening clients about the progress of a particular task.