Begins an asynchronous Read<(Of <<'(T>)>>)(IQuery<(Of <<'(T>)>>), ITransaction, Int64, ReadModifiers) operation.
Declaration Syntax
C# | Visual Basic | Visual C++ | J# |
IAsyncResult<T> BeginRead<T>( IQuery<T> query, AsyncCallback<T> userCallback, Object stateObject )
Function BeginRead(Of T) ( _ query As IQuery(Of T), _ userCallback As AsyncCallback(Of T), _ stateObject As Object _ ) As IAsyncResult(Of T)
generic<typename T> IAsyncResult<T>^ BeginRead( IQuery<T>^ query, AsyncCallback<T>^ userCallback, Object^ stateObject )
Generic Template Parameters
- T
- Type of object to read.
Parameters
- query (IQuery<(Of <(<'T>)>)>)
- The query used for matching.
- userCallback (AsyncCallback<(Of <(<'T>)>)>)
- The method to be called when the asynchronous operation is complete.
- stateObject (Object)
- A user-provided object that distinguishes this particular asynchronous read request from other requests.
Return Value
An IAsyncResult that references the asynchronous read.