Partager via


Méthode DefaultEvents.OnVariableValueChanged

This event is used by the Integration Services run-time. It is not called by tasks.

Espace de noms :  Microsoft.SqlServer.Dts.Runtime
Assembly :  Microsoft.SqlServer.ManagedDTS (en Microsoft.SqlServer.ManagedDTS.dll)

Syntaxe

'Déclaration
Public Overridable Sub OnVariableValueChanged ( _
    DtsContainer As DtsContainer, _
    variable As Variable, _
    ByRef fireAgain As Boolean _
)
'Utilisation
Dim instance As DefaultEvents 
Dim DtsContainer As DtsContainer 
Dim variable As Variable 
Dim fireAgain As Boolean

instance.OnVariableValueChanged(DtsContainer, _
    variable, fireAgain)
public virtual void OnVariableValueChanged(
    DtsContainer DtsContainer,
    Variable variable,
    ref bool fireAgain
)
public:
virtual void OnVariableValueChanged(
    DtsContainer^ DtsContainer, 
    Variable^ variable, 
    bool% fireAgain
)
abstract OnVariableValueChanged : 
        DtsContainer:DtsContainer * 
        variable:Variable * 
        fireAgain:bool byref -> unit  
override OnVariableValueChanged : 
        DtsContainer:DtsContainer * 
        variable:Variable * 
        fireAgain:bool byref -> unit
public function OnVariableValueChanged(
    DtsContainer : DtsContainer, 
    variable : Variable, 
    fireAgain : boolean
)

Paramètres

  • fireAgain
    Type : System.Boolean%
    A Boolean that indicates whether this should continue firing or stop firing. A value of true indicates that it should continue firing.

Implémente

IDTSEvents.OnVariableValueChanged(DtsContainer, Variable, Boolean%)

Notes

This event is called by variables whenever their value is changed. OnVariableValueChanged should not be called by tasks, because it is raised by the run-time engine by the variables. If a task calls OnVariableValueChanged, the method will return success but no event handler will be executed.

Voir aussi

Référence

DefaultEvents Classe

Espace de noms Microsoft.SqlServer.Dts.Runtime