FireProgress-Methode
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
)
Parameter
- bstrProgressDescription
Typ: System. . :: . .String
A description of the progress and status.
- lPercentComplete
Typ: System. . :: . .Int32
The percentage of the task that has completed.
- lProgressCountLow
Typ: System. . :: . .Int32
The low 32-bits of the units completed.
- lProgressCountHigh
Typ: System. . :: . .Int32
The high 32-bits of the units completed.
- bstrSubComponent
Typ: System. . :: . .String
Additional information about the event source.
- pbFireAgain
Typ: System. . :: . .Boolean%
true if this event should continue to be raised as task execution continues; otherwise, false.