Begins an asynchronous Take<(Of <(T>)>)(IQuery<(Of <(T>)>), ITransaction, Int64) operation.
            
| C# | Visual Basic | Visual C++ | J# | 
IAsyncResult<T> BeginTake<T>( IQuery<T> query, ITransaction tx, AsyncCallback<T> userCallback, Object stateObject )
Function BeginTake(Of T) ( _ query As IQuery(Of T), _ tx As ITransaction, _ userCallback As AsyncCallback(Of T), _ stateObject As Object _ ) As IAsyncResult(Of T)
generic<typename T> IAsyncResult<T>^ BeginTake( IQuery<T>^ query, ITransaction^ tx, AsyncCallback<T>^ userCallback, Object^ stateObject )
- T
 - Type of object to take.
 
- query (IQuery<(Of <(T>)>))
 - The query used for matching.
 
- tx (ITransaction)
 - The transaction (if any) under which to work.
 
- 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.
 
An IAsyncResult that references the asynchronous take.
