AdomdDataReader.GetValues Method (Object )

 

Gets an array of values for all of the columns in the current row.

Namespace:   Microsoft.AnalysisServices.AdomdClient
Assembly:  Microsoft.AnalysisServices.AdomdClient (in Microsoft.AnalysisServices.AdomdClient.dll)

Syntax

public int GetValues(
    object[] values
)
public:
virtual int GetValues(
    array<Object^>^ values
) sealed
abstract GetValues : 
        values:Object[] -> int
override GetValues : 
        values:Object[] -> int
Public Function GetValues (
    values As Object()
) As Integer

Parameters

  • values
    Type: System.Object[]

    An array of Object objects into which to copy the column values.

Return Value

Type: System.Int32

An Integer that contains the number of instances copied into the array of Object objects.

Implements

IDataRecord.GetValues(Object[])

See Also

AdomdDataReader Class
Microsoft.AnalysisServices.AdomdClient Namespace

Return to top