Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Called by the run-time engine. It is not called by tasks.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Sub OnVariableValueChanged ( _
DtsContainer As DtsContainer, _
variable As Variable, _
ByRef fireAgain As Boolean _
)
'Usage
Dim instance As IDTSEvents
Dim DtsContainer As DtsContainer
Dim variable As Variable
Dim fireAgain As Boolean
instance.OnVariableValueChanged(DtsContainer, _
variable, fireAgain)
void OnVariableValueChanged(
DtsContainer DtsContainer,
Variable variable,
ref bool fireAgain
)
void OnVariableValueChanged(
DtsContainer^ DtsContainer,
Variable^ variable,
bool% fireAgain
)
abstract OnVariableValueChanged :
DtsContainer:DtsContainer *
variable:Variable *
fireAgain:bool byref -> unit
function OnVariableValueChanged(
DtsContainer : DtsContainer,
variable : Variable,
fireAgain : boolean
)
Parameter
- DtsContainer
Typ: Microsoft.SqlServer.Dts.Runtime.DtsContainer
The task.
- variable
Typ: Microsoft.SqlServer.Dts.Runtime.Variable
The variable that changed.
- fireAgain
Typ: System.Boolean%
A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.