-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGenericDocument.xml
More file actions
1496 lines (1495 loc) Β· 102 KB
/
GenericDocument.xml
File metadata and controls
1496 lines (1495 loc) Β· 102 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
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="GenericDocument" FullName="Android.App.AppSearch.GenericDocument">
<TypeSignature Language="C#" Value="public class GenericDocument : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit GenericDocument extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Android.App.AppSearch.GenericDocument" />
<TypeSignature Language="F#" Value="type GenericDocument = class
 inherit Object" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Java.Lang.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/app/appsearch/GenericDocument", ApiSince=31, DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/app/appsearch/GenericDocument", ApiSince=31, 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.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>Represents a document unit.</summary>
<remarks>
<para>Represents a document unit.</para>
<para>Documents contain structured data conforming to their <c>AppSearchSchema</c> type. Each
document is uniquely identified by a namespace and a String ID within that namespace.</para>
<para>Documents are constructed by using the <c>GenericDocument.Builder</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument</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>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected GenericDocument (Android.App.AppSearch.GenericDocument document);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(class Android.App.AppSearch.GenericDocument document) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.#ctor(Android.App.AppSearch.GenericDocument)" />
<MemberSignature Language="F#" Value="new Android.App.AppSearch.GenericDocument : Android.App.AppSearch.GenericDocument -> Android.App.AppSearch.GenericDocument" Usage="new Android.App.AppSearch.GenericDocument document" />
<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/app/appsearch/GenericDocument;)V", "", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "(Landroid/app/appsearch/GenericDocument;)V", "", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters>
<Parameter Name="document" Type="Android.App.AppSearch.GenericDocument" />
</Parameters>
<Docs>
<param name="document">To be added.</param>
<summary>Creates a new <c>GenericDocument</c> from an existing instance.</summary>
<remarks>
<para>Creates a new <c>GenericDocument</c> from an existing instance.</para>
<para>This method should be only used by constructor of a subclass.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#GenericDocument(android.app.appsearch.GenericDocument)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.GenericDocument(android.app.appsearch.GenericDocument)</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>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected GenericDocument (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.App.AppSearch.GenericDocument.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.App.AppSearch.GenericDocument : nativeint * Android.Runtime.JniHandleOwnership -> Android.App.AppSearch.GenericDocument" Usage="new Android.App.AppSearch.GenericDocument (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">To be added.</param>
<param name="transfer">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreationTimestampMillis">
<MemberSignature Language="C#" Value="public virtual long CreationTimestampMillis { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int64 CreationTimestampMillis" />
<MemberSignature Language="DocId" Value="P:Android.App.AppSearch.GenericDocument.CreationTimestampMillis" />
<MemberSignature Language="F#" Value="member this.CreationTimestampMillis : int64" Usage="Android.App.AppSearch.GenericDocument.CreationTimestampMillis" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getCreationTimestampMillis", "()J", "GetGetCreationTimestampMillisHandler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getCreationTimestampMillis", "()J", "GetGetCreationTimestampMillisHandler", ApiSince=31)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns the creation timestamp of the <c>GenericDocument</c>, in milliseconds.</summary>
<value>To be added.</value>
<remarks>
<para>Returns the creation timestamp of the <c>GenericDocument</c>, in milliseconds.</para>
<para>The value is in the <c>System#currentTimeMillis</c> time base.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getCreationTimestampMillis()" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getCreationTimestampMillis()</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>
</Docs>
</Member>
<Member MemberName="GetProperty">
<MemberSignature Language="C#" Value="public virtual Java.Lang.Object? GetProperty (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Java.Lang.Object GetProperty(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetProperty(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetProperty : string -> Java.Lang.Object
override this.GetProperty : string -> Java.Lang.Object" Usage="genericDocument.GetProperty path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getProperty", "(Ljava/lang/String;)Ljava/lang/Object;", "GetGetProperty_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getProperty", "(Ljava/lang/String;)Ljava/lang/Object;", "GetGetProperty_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Lang.Object</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves the property value with the given path as <c>Object</c>.</summary>
<returns>The entry with the given path as an object or <c>null</c> if there is no such path.
The returned object will be one of the following types: <c>String[]</c>, <c>long[]</c>,
<c>double[]</c>, <c>boolean[]</c>, <c>byte[][]</c>, <c>GenericDocument[]</c>.</returns>
<remarks>
<para>Retrieves the property value with the given path as <c>Object</c>.</para>
<para>A path can be a simple property name, such as those returned by <c>#getPropertyNames</c>.
It may also be a dot-delimited path through the nested document hierarchy, with nested <c>GenericDocument</c> properties accessed via <c>'.'</c> and repeated properties optionally
indexed into via <c>[n]</c>.</para>
<para>For example, given the following <c>GenericDocument</c>:</para>
<code lang="text/java">(Message) {
from: "sender@example.com"
to: [{
name: "Albert Einstein"
email: "einstein@example.com"
}, {
name: "Marie Curie"
email: "curie@example.com"
}]
tags: ["important", "inbox"]
subject: "Hello"
}
</code>
<para>Here are some example paths and their results:
<ul>
<li><c>"from"</c> returns <c>"sender@example.com"</c> as a <c>String</c> array with one
element
<li><c>"to"</c> returns the two nested documents containing contact information as a
<c>GenericDocument</c> array with two elements
<li><c>"to[1]"</c> returns the second nested document containing Marie Curie's contact
information as a <c>GenericDocument</c> array with one element
<li><c>"to[1].email"</c> returns <c>"curie@example.com"</c><li><c>"to[100].email"</c> returns <c>null</c> as this particular document does not have
that many elements in its <c>"to"</c> array.
<li><c>"to.email"</c> aggregates emails across all nested documents that have them,
returning <c>["einstein@example.com", "curie@example.com"]</c> as a <c>String</c>
array with two elements.
</ul></para>
<para>If you know the expected type of the property you are retrieving, it is recommended to use
one of the typed versions of this method instead, such as <c>#getPropertyString</c> or
<c>#getPropertyStringArray</c>.</para>
<para>If the property was assigned as an empty array using one of the <c>Builder#setProperty</c> functions, this method will return an empty array. If no such property
exists at all, this method returns <c>null</c>.</para>
<para>Note: If the property is an empty <c>GenericDocument</c>[] or <c>byte[][]</c>, this
method will return a <c>null</c> value in versions of Android prior to <c>android.os.Build.VERSION_CODES#TIRAMISU Android T</c>. Starting in Android T it will return an
empty array if the property has been set as an empty array, matching the behavior of other
property types.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getProperty(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getProperty(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>
</Docs>
</Member>
<Member MemberName="GetPropertyBlobHandle">
<MemberSignature Language="C#" Value="public virtual Android.App.AppSearch.AppSearchBlobHandle? GetPropertyBlobHandle (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.AppSearch.AppSearchBlobHandle GetPropertyBlobHandle(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyBlobHandle(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyBlobHandle : string -> Android.App.AppSearch.AppSearchBlobHandle
override this.GetPropertyBlobHandle : string -> Android.App.AppSearch.AppSearchBlobHandle" Usage="genericDocument.GetPropertyBlobHandle path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyBlobHandle", "(Ljava/lang/String;)Landroid/app/appsearch/AppSearchBlobHandle;", "GetGetPropertyBlobHandle_Ljava_lang_String_Handler", ApiSince=36)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyBlobHandle", "(Ljava/lang/String;)Landroid/app/appsearch/AppSearchBlobHandle;", "GetGetPropertyBlobHandle_Ljava_lang_String_Handler", ApiSince=36)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android36.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android36.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.AppSearch.AppSearchBlobHandle</ReturnType>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" Index="0" FrameworkAlternate="net-android-36.0" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves an <c>AppSearchBlobHandle</c> property by path.</summary>
<returns>The first <c>AppSearchBlobHandle</c> associated with the given path or <c>null</c>
if there is no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves an <c>AppSearchBlobHandle</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>See <c>AppSearchSession#openBlobForRead</c> for how to use <c>AppSearchBlobHandle</c> to
retrieve blob data.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyBlobHandle(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyBlobHandle(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>
</Docs>
</Member>
<Member MemberName="GetPropertyBlobHandleArray">
<MemberSignature Language="C#" Value="public virtual Android.App.AppSearch.AppSearchBlobHandle[]? GetPropertyBlobHandleArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.AppSearch.AppSearchBlobHandle[] GetPropertyBlobHandleArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyBlobHandleArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyBlobHandleArray : string -> Android.App.AppSearch.AppSearchBlobHandle[]
override this.GetPropertyBlobHandleArray : string -> Android.App.AppSearch.AppSearchBlobHandle[]" Usage="genericDocument.GetPropertyBlobHandleArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyBlobHandleArray", "(Ljava/lang/String;)[Landroid/app/appsearch/AppSearchBlobHandle;", "GetGetPropertyBlobHandleArray_Ljava_lang_String_Handler", ApiSince=36)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyBlobHandleArray", "(Ljava/lang/String;)[Landroid/app/appsearch/AppSearchBlobHandle;", "GetGetPropertyBlobHandleArray_Ljava_lang_String_Handler", ApiSince=36)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android36.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android36.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.AppSearch.AppSearchBlobHandle[]</ReturnType>
<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>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" Index="0" FrameworkAlternate="net-android-36.0" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a repeated <c>AppSearchBlobHandle[]</c> property by path.</summary>
<returns>The <c>AppSearchBlobHandle[]</c> associated with the given path, or <c>null</c> if
no value is set or the value is of a different type.</returns>
<remarks>
<para>Retrieves a repeated <c>AppSearchBlobHandle[]</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyBlobHandle</c>, this method
returns <c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyBlobHandle</c> to an empty <c>AppSearchBlobHandle[]</c>, this method returns an empty <c>AppSearchBlobHandle[]</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyBlobHandleArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyBlobHandleArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyBoolean">
<MemberSignature Language="C#" Value="public virtual bool GetPropertyBoolean (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool GetPropertyBoolean(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyBoolean(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyBoolean : string -> bool
override this.GetPropertyBoolean : string -> bool" Usage="genericDocument.GetPropertyBoolean path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyBoolean", "(Ljava/lang/String;)Z", "GetGetPropertyBoolean_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyBoolean", "(Ljava/lang/String;)Z", "GetGetPropertyBoolean_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a <c>boolean</c> property by path.</summary>
<returns>The first <c>boolean</c> associated with the given path or default value <c>false</c> if there is no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves a <c>boolean</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyBoolean(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyBoolean(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>
</Docs>
</Member>
<Member MemberName="GetPropertyBooleanArray">
<MemberSignature Language="C#" Value="public virtual bool[]? GetPropertyBooleanArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool[] GetPropertyBooleanArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyBooleanArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyBooleanArray : string -> bool[]
override this.GetPropertyBooleanArray : string -> bool[]" Usage="genericDocument.GetPropertyBooleanArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyBooleanArray", "(Ljava/lang/String;)[Z", "GetGetPropertyBooleanArray_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyBooleanArray", "(Ljava/lang/String;)[Z", "GetGetPropertyBooleanArray_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean[]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a repeated <c>boolean</c> property by path.</summary>
<returns>The <c>boolean[]</c> associated with the given path, or <c>null</c> if no value is
set or the value is of a different type.</returns>
<remarks>
<para>Retrieves a repeated <c>boolean</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyBoolean</c>, this method
returns <c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyBoolean</c> to an empty <c>boolean[]</c>,
this method returns an empty <c>boolean[]</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyBooleanArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyBooleanArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyBytes">
<MemberSignature Language="C#" Value="public virtual byte[]? GetPropertyBytes (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int8[] GetPropertyBytes(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyBytes(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyBytes : string -> byte[]
override this.GetPropertyBytes : string -> byte[]" Usage="genericDocument.GetPropertyBytes path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyBytes", "(Ljava/lang/String;)[B", "GetGetPropertyBytes_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyBytes", "(Ljava/lang/String;)[B", "GetGetPropertyBytes_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Byte[]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a <c>byte[]</c> property by path.</summary>
<returns>The first <c>byte[]</c> associated with the given path or <c>null</c> if there is
no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves a <c>byte[]</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyBytes(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyBytes(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>
</Docs>
</Member>
<Member MemberName="GetPropertyBytesArray">
<MemberSignature Language="C#" Value="public virtual byte[][]? GetPropertyBytesArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance unsigned int8[][] GetPropertyBytesArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyBytesArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyBytesArray : string -> byte[][]
override this.GetPropertyBytesArray : string -> byte[][]" Usage="genericDocument.GetPropertyBytesArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyBytesArray", "(Ljava/lang/String;)[[B", "GetGetPropertyBytesArray_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyBytesArray", "(Ljava/lang/String;)[[B", "GetGetPropertyBytesArray_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Byte[][]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<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>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a <c>byte[][]</c> property by path.</summary>
<returns>The <c>byte[][]</c> associated with the given path, or <c>null</c> if no value is
set or the value is of a different type.</returns>
<remarks>
<para>Retrieves a <c>byte[][]</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyBytes</c>, this method returns
<c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyBytes</c> to an empty <c>byte[][]</c>, this
method returns an empty <c>byte[][]</c> starting in <c>android.os.Build.VERSION_CODES#TIRAMISU Android T</c> and <c>null</c> in earlier versions of
Android.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyBytesArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyBytesArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyDocument">
<MemberSignature Language="C#" Value="public virtual Android.App.AppSearch.GenericDocument? GetPropertyDocument (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.AppSearch.GenericDocument GetPropertyDocument(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyDocument(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyDocument : string -> Android.App.AppSearch.GenericDocument
override this.GetPropertyDocument : string -> Android.App.AppSearch.GenericDocument" Usage="genericDocument.GetPropertyDocument path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyDocument", "(Ljava/lang/String;)Landroid/app/appsearch/GenericDocument;", "GetGetPropertyDocument_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyDocument", "(Ljava/lang/String;)Landroid/app/appsearch/GenericDocument;", "GetGetPropertyDocument_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.AppSearch.GenericDocument</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a <c>GenericDocument</c> property by path.</summary>
<returns>The first <c>GenericDocument</c> associated with the given path or <c>null</c> if
there is no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves a <c>GenericDocument</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyDocument(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyDocument(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>
</Docs>
</Member>
<Member MemberName="GetPropertyDocumentArray">
<MemberSignature Language="C#" Value="public virtual Android.App.AppSearch.GenericDocument[]? GetPropertyDocumentArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.AppSearch.GenericDocument[] GetPropertyDocumentArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyDocumentArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyDocumentArray : string -> Android.App.AppSearch.GenericDocument[]
override this.GetPropertyDocumentArray : string -> Android.App.AppSearch.GenericDocument[]" Usage="genericDocument.GetPropertyDocumentArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyDocumentArray", "(Ljava/lang/String;)[Landroid/app/appsearch/GenericDocument;", "GetGetPropertyDocumentArray_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyDocumentArray", "(Ljava/lang/String;)[Landroid/app/appsearch/GenericDocument;", "GetGetPropertyDocumentArray_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.AppSearch.GenericDocument[]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<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>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a repeated <c>GenericDocument</c> property by path.</summary>
<returns>The <c>GenericDocument</c>[] associated with the given path, or <c>null</c> if no
value is set or the value is of a different type.</returns>
<remarks>
<para>Retrieves a repeated <c>GenericDocument</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyDocument</c>, this method
returns <c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyDocument</c> to an empty <c>GenericDocument[]</c>, this method returns an empty <c>GenericDocument[]</c> starting in <c>android.os.Build.VERSION_CODES#TIRAMISU Android T</c> and <c>null</c> in earlier versions of
Android.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyDocumentArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyDocumentArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyDouble">
<MemberSignature Language="C#" Value="public virtual double GetPropertyDouble (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance float64 GetPropertyDouble(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyDouble(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyDouble : string -> double
override this.GetPropertyDouble : string -> double" Usage="genericDocument.GetPropertyDouble path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyDouble", "(Ljava/lang/String;)D", "GetGetPropertyDouble_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyDouble", "(Ljava/lang/String;)D", "GetGetPropertyDouble_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a <c>double</c> property by path.</summary>
<returns>The first <c>double</c> associated with the given path or default value <c>0.0</c>
if there is no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves a <c>double</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyDouble(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyDouble(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>
</Docs>
</Member>
<Member MemberName="GetPropertyDoubleArray">
<MemberSignature Language="C#" Value="public virtual double[]? GetPropertyDoubleArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance float64[] GetPropertyDoubleArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyDoubleArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyDoubleArray : string -> double[]
override this.GetPropertyDoubleArray : string -> double[]" Usage="genericDocument.GetPropertyDoubleArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyDoubleArray", "(Ljava/lang/String;)[D", "GetGetPropertyDoubleArray_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyDoubleArray", "(Ljava/lang/String;)[D", "GetGetPropertyDoubleArray_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Double[]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a repeated <c>double</c> property by path.</summary>
<returns>The <c>double[]</c> associated with the given path, or <c>null</c> if no value is
set or the value is of a different type.</returns>
<remarks>
<para>Retrieves a repeated <c>double</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyDouble</c>, this method
returns <c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyDouble</c> to an empty <c>double[]</c>,
this method returns an empty <c>double[]</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyDoubleArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyDoubleArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyEmbedding">
<MemberSignature Language="C#" Value="public virtual Android.App.AppSearch.EmbeddingVector? GetPropertyEmbedding (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.AppSearch.EmbeddingVector GetPropertyEmbedding(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyEmbedding(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyEmbedding : string -> Android.App.AppSearch.EmbeddingVector
override this.GetPropertyEmbedding : string -> Android.App.AppSearch.EmbeddingVector" Usage="genericDocument.GetPropertyEmbedding path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyEmbedding", "(Ljava/lang/String;)Landroid/app/appsearch/EmbeddingVector;", "GetGetPropertyEmbedding_Ljava_lang_String_Handler", ApiSince=36)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyEmbedding", "(Ljava/lang/String;)Landroid/app/appsearch/EmbeddingVector;", "GetGetPropertyEmbedding_Ljava_lang_String_Handler", ApiSince=36)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android36.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android36.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.AppSearch.EmbeddingVector</ReturnType>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" Index="0" FrameworkAlternate="net-android-36.0" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves an <c>EmbeddingVector</c> property by path.</summary>
<returns>The first <c>EmbeddingVector[]</c> associated with the given path or <c>null</c> if
there is no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves an <c>EmbeddingVector</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyEmbedding(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyEmbedding(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>
</Docs>
</Member>
<Member MemberName="GetPropertyEmbeddingArray">
<MemberSignature Language="C#" Value="public virtual Android.App.AppSearch.EmbeddingVector[]? GetPropertyEmbeddingArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.AppSearch.EmbeddingVector[] GetPropertyEmbeddingArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyEmbeddingArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyEmbeddingArray : string -> Android.App.AppSearch.EmbeddingVector[]
override this.GetPropertyEmbeddingArray : string -> Android.App.AppSearch.EmbeddingVector[]" Usage="genericDocument.GetPropertyEmbeddingArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyEmbeddingArray", "(Ljava/lang/String;)[Landroid/app/appsearch/EmbeddingVector;", "GetGetPropertyEmbeddingArray_Ljava_lang_String_Handler", ApiSince=36)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyEmbeddingArray", "(Ljava/lang/String;)[Landroid/app/appsearch/EmbeddingVector;", "GetGetPropertyEmbeddingArray_Ljava_lang_String_Handler", ApiSince=36)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="net-android-36.0">
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android36.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android36.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.AppSearch.EmbeddingVector[]</ReturnType>
<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>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" Index="0" FrameworkAlternate="net-android-36.0" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a repeated <c>EmbeddingVector[]</c> property by path.</summary>
<returns>The <c>EmbeddingVector[]</c> associated with the given path, or <c>null</c> if no
value is set or the value is of a different type.</returns>
<remarks>
<para>Retrieves a repeated <c>EmbeddingVector[]</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyEmbedding</c>, this method
returns <c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyEmbedding</c> to an empty <c>EmbeddingVector[]</c>, this method returns an empty <c>EmbeddingVector[]</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyEmbeddingArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyEmbeddingArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyLong">
<MemberSignature Language="C#" Value="public virtual long GetPropertyLong (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int64 GetPropertyLong(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyLong(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyLong : string -> int64
override this.GetPropertyLong : string -> int64" Usage="genericDocument.GetPropertyLong path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyLong", "(Ljava/lang/String;)J", "GetGetPropertyLong_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyLong", "(Ljava/lang/String;)J", "GetGetPropertyLong_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a <c>long</c> property by path.</summary>
<returns>The first <c>long</c> associated with the given path or default value <c>0</c> if
there is no such value or the value is of a different type.</returns>
<remarks>
<para>Retrieves a <c>long</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyLong(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyLong(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>
</Docs>
</Member>
<Member MemberName="GetPropertyLongArray">
<MemberSignature Language="C#" Value="public virtual long[]? GetPropertyLongArray (string path);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance int64[] GetPropertyLongArray(string path) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.AppSearch.GenericDocument.GetPropertyLongArray(System.String)" />
<MemberSignature Language="F#" Value="abstract member GetPropertyLongArray : string -> int64[]
override this.GetPropertyLongArray : string -> int64[]" Usage="genericDocument.GetPropertyLongArray path" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getPropertyLongArray", "(Ljava/lang/String;)[J", "GetGetPropertyLongArray_Ljava_lang_String_Handler", ApiSince=31)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getPropertyLongArray", "(Ljava/lang/String;)[J", "GetGetPropertyLongArray_Ljava_lang_String_Handler", ApiSince=31)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android31.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android31.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int64[]</ReturnType>
<Attributes>
<Attribute FrameworkAlternate="net-android-34.0">
<AttributeName Language="C#">[System.Runtime.CompilerServices.Nullable(2)]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.CompilerServices.Nullable(2)>]</AttributeName>
</Attribute>
</Attributes>
</ReturnValue>
<Parameters>
<Parameter Name="path" Type="System.String" />
</Parameters>
<Docs>
<param name="path">The path to look for.</param>
<summary>Retrieves a repeated <c>long[]</c> property by path.</summary>
<returns>The <c>long[]</c> associated with the given path, or <c>null</c> if no value is set
or the value is of a different type.</returns>
<remarks>
<para>Retrieves a repeated <c>long[]</c> property by path.</para>
<para>See <c>#getProperty</c> for a detailed description of the path syntax.</para>
<para>If the property has not been set via <c>Builder#setPropertyLong</c>, this method returns
<c>null</c>.</para>
<para>If it has been set via <c>Builder#setPropertyLong</c> to an empty <c>long[]</c>, this
method returns an empty <c>long[]</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/appsearch/GenericDocument#getPropertyLongArray(java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.appsearch.GenericDocument.getPropertyLongArray(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>
</Docs>
</Member>
<Member MemberName="GetPropertyString">
<MemberSignature Language="C#" Value="public virtual string? GetPropertyString (string path);" />