PackageUpgradeResult.OnVariableValueChanged Method
This API supports the SQL Server 2012 infrastructure and is not intended to be used directly from your code.
Called by the run-time engine.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
Syntax
'Declaration
Public Sub OnVariableValueChanged ( _
DtsContainer As DtsContainer, _
variable As Variable, _
ByRef fireAgain As Boolean _
)
'Usage
Dim instance As PackageUpgradeResult
Dim DtsContainer As DtsContainer
Dim variable As Variable
Dim fireAgain As Boolean
instance.OnVariableValueChanged(DtsContainer, _
variable, fireAgain)
public void OnVariableValueChanged(
DtsContainer DtsContainer,
Variable variable,
ref bool fireAgain
)
public:
virtual void OnVariableValueChanged(
DtsContainer^ DtsContainer,
Variable^ variable,
bool% fireAgain
) sealed
abstract OnVariableValueChanged :
DtsContainer:DtsContainer *
variable:Variable *
fireAgain:bool byref -> unit
override OnVariableValueChanged :
DtsContainer:DtsContainer *
variable:Variable *
fireAgain:bool byref -> unit
public final function OnVariableValueChanged(
DtsContainer : DtsContainer,
variable : Variable,
fireAgain : boolean
)
Parameters
- DtsContainer
Type: Microsoft.SqlServer.Dts.Runtime.DtsContainer
The task.
- variable
Type: Microsoft.SqlServer.Dts.Runtime.Variable
The variable that changed.
- fireAgain
Type: System.Boolean%
True if the object should continue firing; otherwise, false.
Implements
IDTSEvents.OnVariableValueChanged(DtsContainer, Variable, Boolean%)