Compartir a través de


VariableDispenser Propiedad

Returns an object that the data flow uses internally to work with variables.

Espacio de nombres:  Microsoft.SqlServer.Dts.Pipeline
Ensamblado:  Microsoft.SqlServer.TxScript (en Microsoft.SqlServer.TxScript.dll)

Sintaxis

'Declaración
Public ReadOnly Property VariableDispenser As IDTSVariableDispenser100
    Get
'Uso
Dim instance As ScriptComponent
Dim value As IDTSVariableDispenser100

value = instance.VariableDispenser
public IDTSVariableDispenser100 VariableDispenser { get; }
public:
property IDTSVariableDispenser100^ VariableDispenser {
    IDTSVariableDispenser100^ get ();
}
member VariableDispenser : IDTSVariableDispenser100
function get VariableDispenser () : IDTSVariableDispenser100

Valor de la propiedad

Tipo: Microsoft.SqlServer.Dts.Runtime.Wrapper. . :: . .IDTSVariableDispenser100
An IDTSVariableDispenser100 that the data flow uses internally to work with variables.

Notas

The Script component developer does not use the ScriptComponent class directly, but indirectly, by coding the methods and properties of the ScriptMain class, which inherits from ScriptComponent through the UserComponent class.

The developer does not have to use the VariableDispenser property, because the ScriptMain class provides the Variables property for convenient access to both read-only and read/write variables through a single property. The Variables property is a property of the autogenerated UserComponent base class, not of the ScriptComponent class.