SqlCommand.EndExecuteReader Method
Assembly: System.Data (in system.data.dll)
Parameters
- asyncResult
The IAsyncResult returned by the call to BeginExecuteReader.
Return Value
A SqlDataReader object that can be used to retrieve the requested rows.| Exception type | Condition |
|---|---|
| asyncResult parameter is null (Nothing in Microsoft Visual Basic) |
|
| EndExecuteReader was called more than once for a single command execution, or the method was mismatched against its execution method (for example, the code called EndExecuteReader to complete execution of a call to BeginExecuteXmlReader. |
When you call BeginExecuteReader to execute a Transact-SQL statement, you must call EndExecuteReader in order to complete the operation. If the process of executing the command has not yet finished, this method blocks until the operation is complete. Users can verify that the command has completed its operation by using the IAsyncResult instance returned by the BeginExecuteReader method. If a callback procedure was specified in the call to BeginExecuteReader, this method must be called.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.