IDTSComponentMetaData100.FireProgress Method

Raises an OnProgress event.

Namespace:  Microsoft.SqlServer.Dts.Pipeline.Wrapper
Assembly:  Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)

Syntax

'Declaration
Sub FireProgress ( _
    bstrProgressDescription As String, _
    lPercentComplete As Integer, _
    lProgressCountLow As Integer, _
    lProgressCountHigh As Integer, _
    bstrSubComponent As String, _
    <OutAttribute> ByRef pbFireAgain As Boolean _
)
'Usage
Dim instance As IDTSComponentMetaData100
Dim bstrProgressDescription As String
Dim lPercentComplete As Integer
Dim lProgressCountLow As Integer
Dim lProgressCountHigh As Integer
Dim bstrSubComponent As String
Dim pbFireAgain As Boolean

instance.FireProgress(bstrProgressDescription, _
    lPercentComplete, lProgressCountLow, _
    lProgressCountHigh, bstrSubComponent, _
    pbFireAgain)
void FireProgress(
    string bstrProgressDescription,
    int lPercentComplete,
    int lProgressCountLow,
    int lProgressCountHigh,
    string bstrSubComponent,
    out bool pbFireAgain
)
void FireProgress(
    [InAttribute] String^ bstrProgressDescription, 
    [InAttribute] int lPercentComplete, 
    [InAttribute] int lProgressCountLow, 
    [InAttribute] int lProgressCountHigh, 
    [InAttribute] String^ bstrSubComponent, 
    [InAttribute] [OutAttribute] bool% pbFireAgain
)
abstract FireProgress : 
        bstrProgressDescription:string * 
        lPercentComplete:int * 
        lProgressCountLow:int * 
        lProgressCountHigh:int * 
        bstrSubComponent:string * 
        pbFireAgain:bool byref -> unit 
function FireProgress(
    bstrProgressDescription : String, 
    lPercentComplete : int, 
    lProgressCountLow : int, 
    lProgressCountHigh : int, 
    bstrSubComponent : String, 
    pbFireAgain : boolean
)

Parameters

  • bstrProgressDescription
    Type: System.String
    A description of the progress and status.
  • lPercentComplete
    Type: System.Int32
    The percentage of the task that has completed.
  • lProgressCountLow
    Type: System.Int32
    The low 32-bits of the units completed.
  • lProgressCountHigh
    Type: System.Int32
    The high 32-bits of the units completed.
  • bstrSubComponent
    Type: System.String
    Additional information about the event source.
  • pbFireAgain
    Type: System.Boolean%
    true if this event should continue to be raised as task execution continues; otherwise, false.