IDTSPipeline100.VariableDispenser Property

Definition

Sets the IDTSVariableDispenser100 used to lock variables in the package for reading and writing.

public:
 property Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSVariableDispenser100 ^ VariableDispenser {  void set(Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSVariableDispenser100 ^ value); };
[System.Runtime.InteropServices.DispId(119)]
public Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSVariableDispenser100 VariableDispenser { [System.Runtime.InteropServices.DispId(119)] set; }
[<System.Runtime.InteropServices.DispId(119)>]
[<set: System.Runtime.InteropServices.DispId(119)>]
member this.VariableDispenser : Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSVariableDispenser100
Public Property VariableDispenser As IDTSVariableDispenser100

Property Value

The IDTSVariableDispenser100 for the data flow task.

Attributes

Remarks

The IDTSVariableDispenser100 object is used to read and write variables in the package that contains the data flow task. Before reading or writing a variable, the variable must be locked by using one of the following methods: LockForRead, LockForWrite, LockOneForRead, or LockOneForWrite. After the variables are locked by the dispenser, they are accessible through the IDTSVariables100 interface. Because the variables are retrieved by name, you must know the name of the variable you want to read or write. It is not possible to enumerate the collection of variables.

Applies to