MySqlCommand.EndExecuteReader Method

MySQL Connector/Net

MySqlCommandEndExecuteReader Method
Finishes asynchronous execution of a SQL statement, returning the requested MySqlDataReader.

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public MySqlDataReader EndExecuteReader(
	IAsyncResult result
)
Public Function EndExecuteReader ( 
	result As IAsyncResult
) As MySqlDataReader
public:
MySqlDataReader^ EndExecuteReader(
	IAsyncResult^ result
)
member EndExecuteReader : 
        result : IAsyncResult -> MySqlDataReader 

Parameters

result
Type: SystemIAsyncResult
The IAsyncResult returned by the call to BeginExecuteReader.

Return Value

Type: MySqlDataReader
A MySqlDataReader object that can be used to retrieve the requested rows.
See Also