IDTSBuffer100.GetData(Int32, Int32) Method

Definition

Retrieves the data stored in a specified row and column of a IDTSBuffer100.

public:
 Microsoft::SqlServer::Dts::Runtime::Wrapper::DTP_VARIANT GetData(int hRow, int hCol);
public Microsoft.SqlServer.Dts.Runtime.Wrapper.DTP_VARIANT GetData (int hRow, int hCol);
abstract member GetData : int * int -> Microsoft.SqlServer.Dts.Runtime.Wrapper.DTP_VARIANT
Public Function GetData (hRow As Integer, hCol As Integer) As DTP_VARIANT

Parameters

hRow
Int32

The handle for the row.

hCol
Int32

The handle for the column.

Returns

A DTP_VARIANT object that contains the data stored in the specified column in the IDTSBuffer100.

Remarks

This method retrieves the data stored in the specified column in the buffer. Managed component developers do not call this method, but instead use the Item property of the managed PipelineBuffer class.

Applies to