AsyncQueryHandler.OnQueryComplete(Int32, Object, ICursor) Method

Definition

Called when an asynchronous query is completed.

[Android.Runtime.Register("onQueryComplete", "(ILjava/lang/Object;Landroid/database/Cursor;)V", "GetOnQueryComplete_ILjava_lang_Object_Landroid_database_Cursor_Handler")]
protected virtual void OnQueryComplete (int token, Java.Lang.Object? cookie, Android.Database.ICursor? cursor);
[<Android.Runtime.Register("onQueryComplete", "(ILjava/lang/Object;Landroid/database/Cursor;)V", "GetOnQueryComplete_ILjava_lang_Object_Landroid_database_Cursor_Handler")>]
abstract member OnQueryComplete : int * Java.Lang.Object * Android.Database.ICursor -> unit
override this.OnQueryComplete : int * Java.Lang.Object * Android.Database.ICursor -> unit

Parameters

token
Int32

the token to identify the query, passed in from #startQuery.

cookie
Object

the cookie object passed in from #startQuery.

cursor
ICursor

The cursor holding the results from the query.

Attributes

Remarks

Called when an asynchronous query is completed.

Java documentation for android.content.AsyncQueryHandler.onQueryComplete(int, java.lang.Object, android.database.Cursor).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to