Proprietà ScriptComponent.VariableDispenser

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

Spazio dei nomi  Microsoft.SqlServer.Dts.Pipeline
Assembly:  Microsoft.SqlServer.TxScript (in Microsoft.SqlServer.TxScript.dll)

Sintassi

'Dichiarazione
Public ReadOnly Property VariableDispenser As IDTSVariableDispenser100 
    Get
'Utilizzo
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

Valore proprietà

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

Osservazioni

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.

Vedere anche

Riferimento

ScriptComponent Classe

Spazio dei nomi Microsoft.SqlServer.Dts.Pipeline