IDTSComponentMetaData100.FireProgress 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.
Raises an OnProgress(TaskHost, String, Int32, Int32, Int32, String, Boolean) event.
public:
void FireProgress(System::String ^ bstrProgressDescription, int lPercentComplete, int lProgressCountLow, int lProgressCountHigh, System::String ^ bstrSubComponent, [Runtime::InteropServices::Out] bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(134)]
public void FireProgress (string bstrProgressDescription, int lPercentComplete, int lProgressCountLow, int lProgressCountHigh, string bstrSubComponent, out bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(134)>]
abstract member FireProgress : string * int * int * int * string * bool -> unit
Public Sub FireProgress (bstrProgressDescription As String, lPercentComplete As Integer, lProgressCountLow As Integer, lProgressCountHigh As Integer, bstrSubComponent As String, ByRef pbFireAgain As Boolean)
Parameters
- bstrProgressDescription
- String
A description of the progress and status.
- lPercentComplete
- Int32
The percentage of the task that has completed.
- lProgressCountLow
- Int32
The low 32-bits of the units completed.
- lProgressCountHigh
- Int32
The high 32-bits of the units completed.
- bstrSubComponent
- String
The string that represents the name of the component that raises the event.
- pbFireAgain
- Boolean
true to raise the event again as task execution continues; otherwise, false.
- Attributes