Метод IDTSComponentMetaData100.FireProgress
Raises an OnProgress event.
Пространство имен: Microsoft.SqlServer.Dts.Pipeline.Wrapper
Сборка: Microsoft.SqlServer.DTSPipelineWrap (в Microsoft.SqlServer.DTSPipelineWrap.dll)
Синтаксис
'Декларация
Sub FireProgress ( _
bstrProgressDescription As String, _
lPercentComplete As Integer, _
lProgressCountLow As Integer, _
lProgressCountHigh As Integer, _
bstrSubComponent As String, _
<OutAttribute> ByRef pbFireAgain As Boolean _
)
'Применение
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
)
Параметры
- bstrProgressDescription
Тип: System.String
A description of the progress and status.
- lPercentComplete
Тип: System.Int32
The percentage of the task that has completed.
- lProgressCountLow
Тип: System.Int32
The low 32-bits of the units completed.
- lProgressCountHigh
Тип: System.Int32
The high 32-bits of the units completed.
- bstrSubComponent
Тип: System.String
The string that represents the name of the component that raises the event.
- pbFireAgain
Тип: System.Boolean%
true to raise the event again as task execution continues; otherwise, false.