-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathAsyncQueryHandler.xml
More file actions
730 lines (730 loc) · 51.7 KB
/
Copy pathAsyncQueryHandler.xml
File metadata and controls
730 lines (730 loc) · 51.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
<Type Name="AsyncQueryHandler" FullName="Android.Content.AsyncQueryHandler">
<TypeSignature Language="C#" Value="public abstract class AsyncQueryHandler : Android.OS.Handler" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit AsyncQueryHandler extends Android.OS.Handler" />
<TypeSignature Language="DocId" Value="T:Android.Content.AsyncQueryHandler" />
<TypeSignature Language="F#" Value="type AsyncQueryHandler = class
 inherit Handler" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Android.OS.Handler</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/content/AsyncQueryHandler", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/content/AsyncQueryHandler", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(0)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(0)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.NullableContext(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.NullableContext(2)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>A helper class to help make handling asynchronous <c>ContentResolver</c>
queries easier.</summary>
<remarks>
<para>A helper class to help make handling asynchronous <c>ContentResolver</c>
queries easier.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public AsyncQueryHandler (Android.Content.ContentResolver? cr);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class Android.Content.ContentResolver cr) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.#ctor(Android.Content.ContentResolver)" />
<MemberSignature Language="F#" Value="new Android.Content.AsyncQueryHandler : Android.Content.ContentResolver -> Android.Content.AsyncQueryHandler" Usage="new Android.Content.AsyncQueryHandler cr" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "(Landroid/content/ContentResolver;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/content/ContentResolver;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="cr" Type="Android.Content.ContentResolver" />
</Parameters>
<Docs>
<param name="cr">The content resolver used by the handler.</param>
<summary>
</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#AsyncQueryHandler(android.content.ContentResolver)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.AsyncQueryHandler(android.content.ContentResolver)</code>.</a>
</format>
</para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AsyncQueryHandler (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Content.AsyncQueryHandler : nativeint * Android.Runtime.JniHandleOwnership -> Android.Content.AsyncQueryHandler" Usage="new Android.Content.AsyncQueryHandler (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">A <see cref="T:System.IntPtr" />containing a Java Native Interface (JNI) object reference.</param>
<param name="transfer">A <see cref="T:Android.Runtime.JniHandleOwnership" />indicating how to handle <paramref name="javaReference" /></param>
<summary>A constructor used when creating managed representations of JNI objects; called by the runtime.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="CancelOperation">
<MemberSignature Language="C#" Value="public void CancelOperation (int token);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void CancelOperation(int32 token) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.CancelOperation(System.Int32)" />
<MemberSignature Language="F#" Value="member this.CancelOperation : int -> unit" Usage="asyncQueryHandler.CancelOperation token" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("cancelOperation", "(I)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("cancelOperation", "(I)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
</Parameters>
<Docs>
<param name="token">The token representing the operation to be canceled.
If multiple operations have the same token they will all be canceled.</param>
<summary>Attempts to cancel operation that has not already started.</summary>
<remarks>
<para>Attempts to cancel operation that has not already started. Note that
there is no guarantee that the operation will be canceled. They still may
result in a call to on[Query/Insert/Update/Delete]Complete after this
call has completed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#cancelOperation(int)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.cancelOperation(int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="CreateHandler">
<MemberSignature Language="C#" Value="protected virtual Android.OS.Handler? CreateHandler (Android.OS.Looper? looper);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance class Android.OS.Handler CreateHandler(class Android.OS.Looper looper) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.CreateHandler(Android.OS.Looper)" />
<MemberSignature Language="F#" Value="abstract member CreateHandler : Android.OS.Looper -> Android.OS.Handler
override this.CreateHandler : Android.OS.Looper -> Android.OS.Handler" Usage="asyncQueryHandler.CreateHandler looper" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("createHandler", "(Landroid/os/Looper;)Landroid/os/Handler;", "GetCreateHandler_Landroid_os_Looper_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("createHandler", "(Landroid/os/Looper;)Landroid/os/Handler;", "GetCreateHandler_Landroid_os_Looper_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.OS.Handler</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="looper" Type="Android.OS.Looper" />
</Parameters>
<Docs>
<param name="looper">The looper on which the handler runs.</param>
<summary>
</summary>
<returns>A handler associated with the supplied looper.</returns>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#createHandler(android.os.Looper)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.createHandler(android.os.Looper)</code>.</a>
</format>
</para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="JniPeerMembers">
<MemberSignature Language="C#" Value="public override Java.Interop.JniPeerMembers JniPeerMembers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Java.Interop.JniPeerMembers JniPeerMembers" />
<MemberSignature Language="DocId" Value="P:Android.Content.AsyncQueryHandler.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.Content.AsyncQueryHandler.JniPeerMembers" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Interop.JniPeerMembers</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the JNI metadata used to invoke members of this Java peer.</summary>
<value>The JNI peer members for <c>AsyncQueryHandler</c>.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="OnDeleteComplete">
<MemberSignature Language="C#" Value="protected virtual void OnDeleteComplete (int token, Java.Lang.Object? cookie, int result);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnDeleteComplete(int32 token, class Java.Lang.Object cookie, int32 result) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.OnDeleteComplete(System.Int32,Java.Lang.Object,System.Int32)" />
<MemberSignature Language="F#" Value="abstract member OnDeleteComplete : int * Java.Lang.Object * int -> unit
override this.OnDeleteComplete : int * Java.Lang.Object * int -> unit" Usage="asyncQueryHandler.OnDeleteComplete (token, cookie, result)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onDeleteComplete", "(ILjava/lang/Object;I)V", "GetOnDeleteComplete_ILjava_lang_Object_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onDeleteComplete", "(ILjava/lang/Object;I)V", "GetOnDeleteComplete_ILjava_lang_Object_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="result" Type="System.Int32" />
</Parameters>
<Docs>
<param name="token">the token to identify the query, passed in from
<c>#startDelete</c>.</param>
<param name="cookie">the cookie object that's passed in from
<c>#startDelete</c>.</param>
<param name="result">the result returned from the delete operation</param>
<summary>Called when an asynchronous delete is completed.</summary>
<remarks>
<para>Called when an asynchronous delete is completed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#onDeleteComplete(int,%20java.lang.Object,%20int)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.onDeleteComplete(int, java.lang.Object, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="OnInsertComplete">
<MemberSignature Language="C#" Value="protected virtual void OnInsertComplete (int token, Java.Lang.Object? cookie, Android.Net.Uri? uri);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnInsertComplete(int32 token, class Java.Lang.Object cookie, class Android.Net.Uri uri) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.OnInsertComplete(System.Int32,Java.Lang.Object,Android.Net.Uri)" />
<MemberSignature Language="F#" Value="abstract member OnInsertComplete : int * Java.Lang.Object * Android.Net.Uri -> unit
override this.OnInsertComplete : int * Java.Lang.Object * Android.Net.Uri -> unit" Usage="asyncQueryHandler.OnInsertComplete (token, cookie, uri)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onInsertComplete", "(ILjava/lang/Object;Landroid/net/Uri;)V", "GetOnInsertComplete_ILjava_lang_Object_Landroid_net_Uri_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onInsertComplete", "(ILjava/lang/Object;Landroid/net/Uri;)V", "GetOnInsertComplete_ILjava_lang_Object_Landroid_net_Uri_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="uri" Type="Android.Net.Uri" />
</Parameters>
<Docs>
<param name="token">the token to identify the query, passed in from
<c>#startInsert</c>.</param>
<param name="cookie">the cookie object that's passed in from
<c>#startInsert</c>.</param>
<param name="uri">the uri returned from the insert operation.</param>
<summary>Called when an asynchronous insert is completed.</summary>
<remarks>
<para>Called when an asynchronous insert is completed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#onInsertComplete(int,%20java.lang.Object,%20android.net.Uri)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.onInsertComplete(int, java.lang.Object, android.net.Uri)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="OnQueryComplete">
<MemberSignature Language="C#" Value="protected virtual void OnQueryComplete (int token, Java.Lang.Object? cookie, Android.Database.ICursor? cursor);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnQueryComplete(int32 token, class Java.Lang.Object cookie, class Android.Database.ICursor cursor) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.OnQueryComplete(System.Int32,Java.Lang.Object,Android.Database.ICursor)" />
<MemberSignature Language="F#" Value="abstract member OnQueryComplete : int * Java.Lang.Object * Android.Database.ICursor -> unit
override this.OnQueryComplete : int * Java.Lang.Object * Android.Database.ICursor -> unit" Usage="asyncQueryHandler.OnQueryComplete (token, cookie, cursor)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onQueryComplete", "(ILjava/lang/Object;Landroid/database/Cursor;)V", "GetOnQueryComplete_ILjava_lang_Object_Landroid_database_Cursor_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onQueryComplete", "(ILjava/lang/Object;Landroid/database/Cursor;)V", "GetOnQueryComplete_ILjava_lang_Object_Landroid_database_Cursor_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="cursor" Type="Android.Database.ICursor" />
</Parameters>
<Docs>
<param name="token">the token to identify the query, passed in from
<c>#startQuery</c>.</param>
<param name="cookie">the cookie object passed in from <c>#startQuery</c>.</param>
<param name="cursor">The cursor holding the results from the query.</param>
<summary>Called when an asynchronous query is completed.</summary>
<remarks>
<para>Called when an asynchronous query is completed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#onQueryComplete(int,%20java.lang.Object,%20android.database.Cursor)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.onQueryComplete(int, java.lang.Object, android.database.Cursor)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="OnUpdateComplete">
<MemberSignature Language="C#" Value="protected virtual void OnUpdateComplete (int token, Java.Lang.Object? cookie, int result);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig newslot virtual instance void OnUpdateComplete(int32 token, class Java.Lang.Object cookie, int32 result) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.OnUpdateComplete(System.Int32,Java.Lang.Object,System.Int32)" />
<MemberSignature Language="F#" Value="abstract member OnUpdateComplete : int * Java.Lang.Object * int -> unit
override this.OnUpdateComplete : int * Java.Lang.Object * int -> unit" Usage="asyncQueryHandler.OnUpdateComplete (token, cookie, result)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("onUpdateComplete", "(ILjava/lang/Object;I)V", "GetOnUpdateComplete_ILjava_lang_Object_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("onUpdateComplete", "(ILjava/lang/Object;I)V", "GetOnUpdateComplete_ILjava_lang_Object_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="result" Type="System.Int32" />
</Parameters>
<Docs>
<param name="token">the token to identify the query, passed in from
<c>#startUpdate</c>.</param>
<param name="cookie">the cookie object that's passed in from
<c>#startUpdate</c>.</param>
<param name="result">the result returned from the update operation</param>
<summary>Called when an asynchronous update is completed.</summary>
<remarks>
<para>Called when an asynchronous update is completed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#onUpdateComplete(int,%20java.lang.Object,%20int)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.onUpdateComplete(int, java.lang.Object, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="StartDelete">
<MemberSignature Language="C#" Value="public void StartDelete (int token, Java.Lang.Object? cookie, Android.Net.Uri? uri, string? selection, string[]? selectionArgs);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void StartDelete(int32 token, class Java.Lang.Object cookie, class Android.Net.Uri uri, string selection, string[] selectionArgs) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.StartDelete(System.Int32,Java.Lang.Object,Android.Net.Uri,System.String,System.String[])" />
<MemberSignature Language="F#" Value="member this.StartDelete : int * Java.Lang.Object * Android.Net.Uri * string * string[] -> unit" Usage="asyncQueryHandler.StartDelete (token, cookie, uri, selection, selectionArgs)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("startDelete", "(ILjava/lang/Object;Landroid/net/Uri;Ljava/lang/String;[Ljava/lang/String;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("startDelete", "(ILjava/lang/Object;Landroid/net/Uri;Ljava/lang/String;[Ljava/lang/String;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="uri" Type="Android.Net.Uri" />
<Parameter Name="selection" Type="System.String" />
<Parameter Name="selectionArgs" Type="System.String[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="selectionArgs">The values that replace placeholders in the selection clause.</param>
<param name="token">A token passed into <c>#onDeleteComplete</c> to identify
the delete operation.</param>
<param name="cookie">An object that gets passed into <c>#onDeleteComplete</c></param>
<param name="uri">the Uri passed to the delete operation.</param>
<param name="selection">the where clause.</param>
<summary>This method begins an asynchronous delete.</summary>
<remarks>
<para>This method begins an asynchronous delete. When the delete operation is
done <c>#onDeleteComplete</c> is called.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#startDelete(int,%20java.lang.Object,%20android.net.Uri,%20java.lang.String,%20java.lang.String[])" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.startDelete(int, java.lang.Object, android.net.Uri, java.lang.String, java.lang.String[])</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="StartInsert">
<MemberSignature Language="C#" Value="public void StartInsert (int token, Java.Lang.Object? cookie, Android.Net.Uri? uri, Android.Content.ContentValues? initialValues);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void StartInsert(int32 token, class Java.Lang.Object cookie, class Android.Net.Uri uri, class Android.Content.ContentValues initialValues) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.StartInsert(System.Int32,Java.Lang.Object,Android.Net.Uri,Android.Content.ContentValues)" />
<MemberSignature Language="F#" Value="member this.StartInsert : int * Java.Lang.Object * Android.Net.Uri * Android.Content.ContentValues -> unit" Usage="asyncQueryHandler.StartInsert (token, cookie, uri, initialValues)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("startInsert", "(ILjava/lang/Object;Landroid/net/Uri;Landroid/content/ContentValues;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("startInsert", "(ILjava/lang/Object;Landroid/net/Uri;Landroid/content/ContentValues;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="uri" Type="Android.Net.Uri" />
<Parameter Name="initialValues" Type="Android.Content.ContentValues" />
</Parameters>
<Docs>
<param name="token">A token passed into <c>#onInsertComplete</c> to identify
the insert operation.</param>
<param name="cookie">An object that gets passed into <c>#onInsertComplete</c></param>
<param name="uri">the Uri passed to the insert operation.</param>
<param name="initialValues">the ContentValues parameter passed to the insert operation.</param>
<summary>This method begins an asynchronous insert.</summary>
<remarks>
<para>This method begins an asynchronous insert. When the insert operation is
done <c>#onInsertComplete</c> is called.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#startInsert(int,%20java.lang.Object,%20android.net.Uri,%20android.content.ContentValues)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.startInsert(int, java.lang.Object, android.net.Uri, android.content.ContentValues)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="StartQuery">
<MemberSignature Language="C#" Value="public virtual void StartQuery (int token, Java.Lang.Object? cookie, Android.Net.Uri? uri, string[]? projection, string? selection, string[]? selectionArgs, string? orderBy);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void StartQuery(int32 token, class Java.Lang.Object cookie, class Android.Net.Uri uri, string[] projection, string selection, string[] selectionArgs, string orderBy) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.StartQuery(System.Int32,Java.Lang.Object,Android.Net.Uri,System.String[],System.String,System.String[],System.String)" />
<MemberSignature Language="F#" Value="abstract member StartQuery : int * Java.Lang.Object * Android.Net.Uri * string[] * string * string[] * string -> unit
override this.StartQuery : int * Java.Lang.Object * Android.Net.Uri * string[] * string * string[] * string -> unit" Usage="asyncQueryHandler.StartQuery (token, cookie, uri, projection, selection, selectionArgs, orderBy)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("startQuery", "(ILjava/lang/Object;Landroid/net/Uri;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)V", "GetStartQuery_ILjava_lang_Object_Landroid_net_Uri_arrayLjava_lang_String_Ljava_lang_String_arrayLjava_lang_String_Ljava_lang_String_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("startQuery", "(ILjava/lang/Object;Landroid/net/Uri;[Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Ljava/lang/String;)V", "GetStartQuery_ILjava_lang_Object_Landroid_net_Uri_arrayLjava_lang_String_Ljava_lang_String_arrayLjava_lang_String_Ljava_lang_String_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="uri" Type="Android.Net.Uri" />
<Parameter Name="projection" Type="System.String[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="selection" Type="System.String" />
<Parameter Name="selectionArgs" Type="System.String[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
<Parameter Name="orderBy" Type="System.String" />
</Parameters>
<Docs>
<param name="token">A token passed into <c>#onQueryComplete</c> to identify
the query.</param>
<param name="cookie">An object that gets passed into <c>#onQueryComplete</c></param>
<param name="uri">The URI, using the content:// scheme, for the content to
retrieve.</param>
<param name="projection">A list of which columns to return. Passing null will
return all columns, which is discouraged to prevent reading data
from storage that isn't going to be used.</param>
<param name="selection">A filter declaring which rows to return, formatted as an
SQL WHERE clause (excluding the WHERE itself). Passing null will
return all rows for the given URI.</param>
<param name="selectionArgs">You may include ?s in selection, which will be
replaced by the values from selectionArgs, in the order that they
appear in the selection. The values will be bound as Strings.</param>
<param name="orderBy">How to order the rows, formatted as an SQL ORDER BY
clause (excluding the ORDER BY itself). Passing null will use the
default sort order, which may be unordered.</param>
<summary>This method begins an asynchronous query.</summary>
<remarks>
<para>This method begins an asynchronous query. When the query is done
<c>#onQueryComplete</c> is called.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#startQuery(int,%20java.lang.Object,%20android.net.Uri,%20java.lang.String[],%20java.lang.String,%20java.lang.String[],%20java.lang.String)" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.startQuery(int, java.lang.Object, android.net.Uri, java.lang.String[], java.lang.String, java.lang.String[], java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="StartUpdate">
<MemberSignature Language="C#" Value="public void StartUpdate (int token, Java.Lang.Object? cookie, Android.Net.Uri? uri, Android.Content.ContentValues? values, string? selection, string[]? selectionArgs);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void StartUpdate(int32 token, class Java.Lang.Object cookie, class Android.Net.Uri uri, class Android.Content.ContentValues values, string selection, string[] selectionArgs) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Content.AsyncQueryHandler.StartUpdate(System.Int32,Java.Lang.Object,Android.Net.Uri,Android.Content.ContentValues,System.String,System.String[])" />
<MemberSignature Language="F#" Value="member this.StartUpdate : int * Java.Lang.Object * Android.Net.Uri * Android.Content.ContentValues * string * string[] -> unit" Usage="asyncQueryHandler.StartUpdate (token, cookie, uri, values, selection, selectionArgs)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("startUpdate", "(ILjava/lang/Object;Landroid/net/Uri;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;)V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("startUpdate", "(ILjava/lang/Object;Landroid/net/Uri;Landroid/content/ContentValues;Ljava/lang/String;[Ljava/lang/String;)V", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="token" Type="System.Int32" />
<Parameter Name="cookie" Type="Java.Lang.Object" />
<Parameter Name="uri" Type="Android.Net.Uri" />
<Parameter Name="values" Type="Android.Content.ContentValues" />
<Parameter Name="selection" Type="System.String" />
<Parameter Name="selectionArgs" Type="System.String[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(new System.Byte[] { 2, 1 })>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="selection">The SQL selection clause.</param>
<param name="selectionArgs">The values that replace placeholders in the selection clause.</param>
<param name="token">A token passed into <c>#onUpdateComplete</c> to identify
the update operation.</param>
<param name="cookie">An object that gets passed into <c>#onUpdateComplete</c></param>
<param name="uri">the Uri passed to the update operation.</param>
<param name="values">the ContentValues parameter passed to the update operation.</param>
<summary>This method begins an asynchronous update.</summary>
<remarks>
<para>This method begins an asynchronous update. When the update operation is
done <c>#onUpdateComplete</c> is called.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/content/AsyncQueryHandler#startUpdate(int,%20java.lang.Object,%20android.net.Uri,%20android.content.ContentValues,%20java.lang.String,%20java.lang.String[])" title="Reference documentation">Java documentation for <code>android.content.AsyncQueryHandler.startUpdate(int, java.lang.Object, android.net.Uri, android.content.ContentValues, java.lang.String, java.lang.String[])</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
<Member MemberName="ThresholdClass">
<MemberSignature Language="C#" Value="protected override IntPtr ThresholdClass { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance native int ThresholdClass" />
<MemberSignature Language="DocId" Value="P:Android.Content.AsyncQueryHandler.ThresholdClass" />
<MemberSignature Language="F#" Value="member this.ThresholdClass : nativeint" Usage="Android.Content.AsyncQueryHandler.ThresholdClass" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.IntPtr</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.IntPtr" /> which contains the <c>java.lang.Class</c> JNI value corresponding to this type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ThresholdType">
<MemberSignature Language="C#" Value="protected override Type ThresholdType { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Type ThresholdType" />
<MemberSignature Language="DocId" Value="P:Android.Content.AsyncQueryHandler.ThresholdType" />
<MemberSignature Language="F#" Value="member this.ThresholdType : Type" Usage="Android.Content.AsyncQueryHandler.ThresholdType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(1)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(1)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: System.Runtime.CompilerServices.NullableContext(1)]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.CompilerServices.NullableContext(1)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Type</ReturnType>
</ReturnValue>
<Docs>
<summary>This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.</summary>
<value>A <see cref="T:System.Type" /> which provides the declaring type.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
</Members>
</Type>