IDTSEvents100.OnVariableValueChanged 메서드
이 API는 SQL Server 2012 인프라를 지원하기 위한 것으로 코드에서 직접 사용할 수 없습니다.
Called by the run-time engine. It is not called by tasks.
네임스페이스: Microsoft.SqlServer.Dts.Runtime.Wrapper
어셈블리: Microsoft.SqlServer.DTSRuntimeWrap(Microsoft.SqlServer.DTSRuntimeWrap.dll)
구문
‘선언
Sub OnVariableValueChanged ( _
pContainer As IDTSContainer100, _
pVariable As IDTSVariable100, _
<OutAttribute> ByRef pbFireAgain As Boolean _
)
‘사용 방법
Dim instance As IDTSEvents100
Dim pContainer As IDTSContainer100
Dim pVariable As IDTSVariable100
Dim pbFireAgain As Boolean
instance.OnVariableValueChanged(pContainer, _
pVariable, pbFireAgain)
void OnVariableValueChanged(
IDTSContainer100 pContainer,
IDTSVariable100 pVariable,
out bool pbFireAgain
)
void OnVariableValueChanged(
[InAttribute] IDTSContainer100^ pContainer,
[InAttribute] IDTSVariable100^ pVariable,
[InAttribute] [OutAttribute] bool% pbFireAgain
)
abstract OnVariableValueChanged :
pContainer:IDTSContainer100 *
pVariable:IDTSVariable100 *
pbFireAgain:bool byref -> unit
function OnVariableValueChanged(
pContainer : IDTSContainer100,
pVariable : IDTSVariable100,
pbFireAgain : boolean
)
매개 변수
- pContainer
유형: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSContainer100
The task.
- pVariable
유형: Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSVariable100
The variable that changed.
- pbFireAgain
유형: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.
주의
For more information, see IDTSEvents.