AdomdDataReader.Read Method ()

 

Advances the AdomdDataReader to the next row.

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

Syntax

public bool Read()
public:
virtual bool Read() sealed
abstract Read : unit -> bool
override Read : unit -> bool
Public Function Read As Boolean

Return Value

Type: System.Boolean

A Boolean that contains true if there are more rows; false otherwise.

Implements

IDataReader.Read()

Remarks

The default position of the AdomdDataReader is prior to the first record. Therefore, you must call the Read method first before attempting to access any data.

See Also

AdomdDataReader Class
Microsoft.AnalysisServices.AdomdClient Namespace

Return to top