This repository was archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathAccountManager.xml
More file actions
3950 lines (3939 loc) · 300 KB
/
Copy pathAccountManager.xml
File metadata and controls
3950 lines (3939 loc) · 300 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="AccountManager" FullName="Android.Accounts.AccountManager">
<TypeSignature Language="C#" Value="public class AccountManager : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit AccountManager extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Android.Accounts.AccountManager" />
<TypeSignature Language="F#" Value="type AccountManager = 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/accounts/AccountManager", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/accounts/AccountManager", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="5">
<summary>This class provides access to a centralized registry of the user's
online accounts.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager</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 5" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected AccountManager (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.Accounts.AccountManager.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.Accounts.AccountManager : nativeint * Android.Runtime.JniHandleOwnership -> Android.Accounts.AccountManager" Usage="new Android.Accounts.AccountManager (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</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="AccountsUpdated">
<MemberSignature Language="C#" Value="public event EventHandler<Android.Accounts.AccountsUpdateEventArgs> AccountsUpdated;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler`1<class Android.Accounts.AccountsUpdateEventArgs> AccountsUpdated" />
<MemberSignature Language="DocId" Value="E:Android.Accounts.AccountManager.AccountsUpdated" />
<MemberSignature Language="F#" Value="member this.AccountsUpdated : EventHandler<Android.Accounts.AccountsUpdateEventArgs> " Usage="member this.AccountsUpdated : System.EventHandler<Android.Accounts.AccountsUpdateEventArgs> " />
<MemberType>Event</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.EventHandler<Android.Accounts.AccountsUpdateEventArgs></ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</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="ActionAccountRemoved">
<MemberSignature Language="C#" Value="public const string ActionAccountRemoved;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string ActionAccountRemoved" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ActionAccountRemoved" />
<MemberSignature Language="F#" Value="val mutable ActionAccountRemoved : string" Usage="Android.Accounts.AccountManager.ActionAccountRemoved" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ACTION_ACCOUNT_REMOVED", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ACTION_ACCOUNT_REMOVED", ApiSince=26)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Action sent as a broadcast Intent by the AccountsService when any account is removed
or renamed.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#ACTION_ACCOUNT_REMOVED" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.ACTION_ACCOUNT_REMOVED</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="ActionAuthenticatorIntent">
<MemberSignature Language="C#" Value="public const string ActionAuthenticatorIntent;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string ActionAuthenticatorIntent" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ActionAuthenticatorIntent" />
<MemberSignature Language="F#" Value="val mutable ActionAuthenticatorIntent : string" Usage="Android.Accounts.AccountManager.ActionAuthenticatorIntent" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ACTION_AUTHENTICATOR_INTENT")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ACTION_AUTHENTICATOR_INTENT")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<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>
</remarks>
<since version="Added in API level 5" />
</Docs>
</Member>
<Member MemberName="AddAccount">
<MemberSignature Language="C#" Value="public virtual Android.Accounts.IAccountManagerFuture? AddAccount (string? accountType, string? authTokenType, string[]? requiredFeatures, Android.OS.Bundle? addAccountOptions, Android.App.Activity? activity, Android.Accounts.IAccountManagerCallback? callback, Android.OS.Handler? handler);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.Accounts.IAccountManagerFuture AddAccount(string accountType, string authTokenType, string[] requiredFeatures, class Android.OS.Bundle addAccountOptions, class Android.App.Activity activity, class Android.Accounts.IAccountManagerCallback callback, class Android.OS.Handler handler) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.AddAccount(System.String,System.String,System.String[],Android.OS.Bundle,Android.App.Activity,Android.Accounts.IAccountManagerCallback,Android.OS.Handler)" />
<MemberSignature Language="F#" Value="abstract member AddAccount : string * string * string[] * Android.OS.Bundle * Android.App.Activity * Android.Accounts.IAccountManagerCallback * Android.OS.Handler -> Android.Accounts.IAccountManagerFuture
override this.AddAccount : string * string * string[] * Android.OS.Bundle * Android.App.Activity * Android.Accounts.IAccountManagerCallback * Android.OS.Handler -> Android.Accounts.IAccountManagerFuture" Usage="accountManager.AddAccount (accountType, authTokenType, requiredFeatures, addAccountOptions, activity, callback, handler)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addAccount", "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;", "GetAddAccount_Ljava_lang_String_Ljava_lang_String_arrayLjava_lang_String_Landroid_os_Bundle_Landroid_app_Activity_Landroid_accounts_AccountManagerCallback_Landroid_os_Handler_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addAccount", "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;", "GetAddAccount_Ljava_lang_String_Ljava_lang_String_arrayLjava_lang_String_Landroid_os_Bundle_Landroid_app_Activity_Landroid_accounts_AccountManagerCallback_Landroid_os_Handler_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.IAccountManagerFuture</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="accountType" Type="System.String" />
<Parameter Name="authTokenType" Type="System.String" />
<Parameter Name="requiredFeatures" Type="System.String[]" />
<Parameter Name="addAccountOptions" Type="Android.OS.Bundle" />
<Parameter Name="activity" Type="Android.App.Activity" />
<Parameter Name="callback" Type="Android.Accounts.IAccountManagerCallback" />
<Parameter Name="handler" Type="Android.OS.Handler" />
</Parameters>
<Docs>
<param name="accountType">The type of account to add; must not be null</param>
<param name="authTokenType">The type of auth token (see <c>#getAuthToken</c>)
this account will need to be able to generate, null for none</param>
<param name="requiredFeatures">The features (see <c>#hasFeatures</c>) this
account must have, null for none</param>
<param name="addAccountOptions">Authenticator-specific options for the request,
may be null or empty</param>
<param name="activity">The <c>Activity</c> context to use for launching a new
authenticator-defined sub-Activity to prompt the user to create an
account; used only to call startActivity(); if null, the prompt
will not be launched directly, but the necessary <c>Intent</c>
will be returned to the caller instead</param>
<param name="callback">Callback to invoke when the request completes,
null for no callback</param>
<param name="handler">
<c>Handler</c> identifying the callback thread,
null for the main thread</param>
<summary>Asks the user to add an account of a specified type.</summary>
<returns>An <c>AccountManagerFuture</c> which resolves to a Bundle with
these fields if activity was specified and an account was created:
<ul>
<li> <c>#KEY_ACCOUNT_NAME</c> - the name of the account created
<li> <c>#KEY_ACCOUNT_TYPE</c> - the type of the account
</ul>
If no activity was specified, the returned Bundle contains only
<c>#KEY_INTENT</c> with the <c>Intent</c> needed to launch the
actual account creation process. If an error occurred,
<c>AccountManagerFuture#getResult()</c> throws:
<ul>
<li> <c>AuthenticatorException</c> if no authenticator was registered for
this account type or the authenticator failed to respond
<li> <c>OperationCanceledException</c> if the operation was canceled for
any reason, including the user canceling the creation process or adding accounts
(of this type) has been disabled by policy
<li> <c>IOException</c> if the authenticator experienced an I/O problem
creating a new account, usually because of network trouble
</ul></returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#addAccount(java.lang.String,%20java.lang.String,%20java.lang.String[],%20android.os.Bundle,%20android.app.Activity,%20android.accounts.AccountManagerCallback%3Candroid.os.Bundle%3E,%20android.os.Handler)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.addAccount(java.lang.String, java.lang.String, java.lang.String[], android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback<android.os.Bundle>, android.os.Handler)</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="AddAccountExplicitly">
<MemberSignature Language="C#" Value="public virtual bool AddAccountExplicitly (Android.Accounts.Account? account, string? password, Android.OS.Bundle? userdata);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool AddAccountExplicitly(class Android.Accounts.Account account, string password, class Android.OS.Bundle userdata) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.AddAccountExplicitly(Android.Accounts.Account,System.String,Android.OS.Bundle)" />
<MemberSignature Language="F#" Value="abstract member AddAccountExplicitly : Android.Accounts.Account * string * Android.OS.Bundle -> bool
override this.AddAccountExplicitly : Android.Accounts.Account * string * Android.OS.Bundle -> bool" Usage="accountManager.AddAccountExplicitly (account, password, userdata)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addAccountExplicitly", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;)Z", "GetAddAccountExplicitly_Landroid_accounts_Account_Ljava_lang_String_Landroid_os_Bundle_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addAccountExplicitly", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;)Z", "GetAddAccountExplicitly_Landroid_accounts_Account_Ljava_lang_String_Landroid_os_Bundle_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.AUTHENTICATE_ACCOUNTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.AUTHENTICATE_ACCOUNTS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="account" Type="Android.Accounts.Account" />
<Parameter Name="password" Type="System.String" />
<Parameter Name="userdata" Type="Android.OS.Bundle" />
</Parameters>
<Docs>
<param name="account">The <c>Account</c> to add</param>
<param name="password">The password to associate with the account, null for none</param>
<param name="userdata">String values to use for the account's userdata, null for
none</param>
<summary>Adds an account directly to the AccountManager.</summary>
<returns>True if the account was successfully added, false if the account
already exists, the account is null, the user is locked, or another error occurs.</returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#addAccountExplicitly(android.accounts.Account,%20java.lang.String,%20android.os.Bundle)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.addAccountExplicitly(android.accounts.Account, java.lang.String, android.os.Bundle)</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 5" />
</Docs>
</Member>
<Member MemberName="AddAccountExplicitly">
<MemberSignature Language="C#" Value="public virtual bool AddAccountExplicitly (Android.Accounts.Account? account, string? password, Android.OS.Bundle? extras, System.Collections.Generic.IDictionary<string,Java.Lang.Integer>? visibility);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool AddAccountExplicitly(class Android.Accounts.Account account, string password, class Android.OS.Bundle extras, class System.Collections.Generic.IDictionary`2<string, class Java.Lang.Integer> visibility) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.AddAccountExplicitly(Android.Accounts.Account,System.String,Android.OS.Bundle,System.Collections.Generic.IDictionary{System.String,Java.Lang.Integer})" />
<MemberSignature Language="F#" Value="abstract member AddAccountExplicitly : Android.Accounts.Account * string * Android.OS.Bundle * System.Collections.Generic.IDictionary<string, Java.Lang.Integer> -> bool
override this.AddAccountExplicitly : Android.Accounts.Account * string * Android.OS.Bundle * System.Collections.Generic.IDictionary<string, Java.Lang.Integer> -> bool" Usage="accountManager.AddAccountExplicitly (account, password, extras, visibility)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addAccountExplicitly", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;Ljava/util/Map;)Z", "GetAddAccountExplicitly_Landroid_accounts_Account_Ljava_lang_String_Landroid_os_Bundle_Ljava_util_Map_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addAccountExplicitly", "(Landroid/accounts/Account;Ljava/lang/String;Landroid/os/Bundle;Ljava/util/Map;)Z", "GetAddAccountExplicitly_Landroid_accounts_Account_Ljava_lang_String_Landroid_os_Bundle_Ljava_util_Map_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="account" Type="Android.Accounts.Account" />
<Parameter Name="password" Type="System.String" />
<Parameter Name="extras" Type="Android.OS.Bundle" />
<Parameter Name="visibility" Type="System.Collections.Generic.IDictionary<System.String,Java.Lang.Integer>" />
</Parameters>
<Docs>
<param name="account">The <c>Account</c> to add</param>
<param name="password">The password to associate with the account, null for none</param>
<param name="extras">String values to use for the account's userdata, null for none</param>
<param name="visibility">Map from packageName to visibility values which will be set before account
is added. See <c>#getAccountVisibility</c> for possible values.</param>
<summary>Adds an account directly to the AccountManager.</summary>
<returns>True if the account was successfully added, false if the account already exists, the
account is null, or another error occurs.</returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#addAccountExplicitly(android.accounts.Account,%20java.lang.String,%20android.os.Bundle,%20java.util.Map%3Cjava.lang.String,%20java.lang.Integer%3E)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.addAccountExplicitly(android.accounts.Account, java.lang.String, android.os.Bundle, java.util.Map<java.lang.String, java.lang.Integer>)</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="AddOnAccountsUpdatedListener">
<MemberSignature Language="C#" Value="public virtual void AddOnAccountsUpdatedListener (Android.Accounts.IOnAccountsUpdateListener? listener, Android.OS.Handler? handler, bool updateImmediately);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddOnAccountsUpdatedListener(class Android.Accounts.IOnAccountsUpdateListener listener, class Android.OS.Handler handler, bool updateImmediately) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.AddOnAccountsUpdatedListener(Android.Accounts.IOnAccountsUpdateListener,Android.OS.Handler,System.Boolean)" />
<MemberSignature Language="F#" Value="abstract member AddOnAccountsUpdatedListener : Android.Accounts.IOnAccountsUpdateListener * Android.OS.Handler * bool -> unit
override this.AddOnAccountsUpdatedListener : Android.Accounts.IOnAccountsUpdateListener * Android.OS.Handler * bool -> unit" Usage="accountManager.AddOnAccountsUpdatedListener (listener, handler, updateImmediately)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addOnAccountsUpdatedListener", "(Landroid/accounts/OnAccountsUpdateListener;Landroid/os/Handler;Z)V", "GetAddOnAccountsUpdatedListener_Landroid_accounts_OnAccountsUpdateListener_Landroid_os_Handler_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addOnAccountsUpdatedListener", "(Landroid/accounts/OnAccountsUpdateListener;Landroid/os/Handler;Z)V", "GetAddOnAccountsUpdatedListener_Landroid_accounts_OnAccountsUpdateListener_Landroid_os_Handler_ZHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.GET_ACCOUNTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.GET_ACCOUNTS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="listener" Type="Android.Accounts.IOnAccountsUpdateListener" />
<Parameter Name="handler" Type="Android.OS.Handler" />
<Parameter Name="updateImmediately" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="listener">The listener to send notifications to</param>
<param name="handler">
<see cref="T:Android.OS.Handler" /> identifying the thread to use
for notifications, null for the main thread</param>
<param name="updateImmediately">If true, the listener will be invoked
(on the handler thread) right away with the current account list</param>
<summary>Adds an <c>OnAccountsUpdateListener</c> to this instance of the <c>AccountManager</c>.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#addOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener,%20android.os.Handler,%20boolean)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.addOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener, android.os.Handler, boolean)</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 5" />
<exception cref="T:Java.Lang.IllegalArgumentException">if listener is null</exception>
<exception cref="T:Java.Lang.IllegalStateException">if listener was already added
</exception>
</Docs>
</Member>
<Member MemberName="AddOnAccountsUpdatedListener">
<MemberSignature Language="C#" Value="public virtual void AddOnAccountsUpdatedListener (Android.Accounts.IOnAccountsUpdateListener? listener, Android.OS.Handler? handler, bool updateImmediately, string[]? accountTypes);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddOnAccountsUpdatedListener(class Android.Accounts.IOnAccountsUpdateListener listener, class Android.OS.Handler handler, bool updateImmediately, string[] accountTypes) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.AddOnAccountsUpdatedListener(Android.Accounts.IOnAccountsUpdateListener,Android.OS.Handler,System.Boolean,System.String[])" />
<MemberSignature Language="F#" Value="abstract member AddOnAccountsUpdatedListener : Android.Accounts.IOnAccountsUpdateListener * Android.OS.Handler * bool * string[] -> unit
override this.AddOnAccountsUpdatedListener : Android.Accounts.IOnAccountsUpdateListener * Android.OS.Handler * bool * string[] -> unit" Usage="accountManager.AddOnAccountsUpdatedListener (listener, handler, updateImmediately, accountTypes)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addOnAccountsUpdatedListener", "(Landroid/accounts/OnAccountsUpdateListener;Landroid/os/Handler;Z[Ljava/lang/String;)V", "GetAddOnAccountsUpdatedListener_Landroid_accounts_OnAccountsUpdateListener_Landroid_os_Handler_ZarrayLjava_lang_String_Handler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addOnAccountsUpdatedListener", "(Landroid/accounts/OnAccountsUpdateListener;Landroid/os/Handler;Z[Ljava/lang/String;)V", "GetAddOnAccountsUpdatedListener_Landroid_accounts_OnAccountsUpdateListener_Landroid_os_Handler_ZarrayLjava_lang_String_Handler", ApiSince=26)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="listener" Type="Android.Accounts.IOnAccountsUpdateListener" />
<Parameter Name="handler" Type="Android.OS.Handler" />
<Parameter Name="updateImmediately" Type="System.Boolean" />
<Parameter Name="accountTypes" Type="System.String[]" />
</Parameters>
<Docs>
<param name="listener">The listener to send notifications to</param>
<param name="handler">
<c>Handler</c> identifying the thread to use for notifications, null for the
main thread</param>
<param name="updateImmediately">If true, the listener will be invoked (on the handler thread) right
away with the current account list</param>
<param name="accountTypes">If set, only changes to accounts of given types will be reported.</param>
<summary>Adds an <c>OnAccountsUpdateListener</c> to this instance of the <c>AccountManager</c>.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#addOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener,%20android.os.Handler,%20boolean,%20java.lang.String[])" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.addOnAccountsUpdatedListener(android.accounts.OnAccountsUpdateListener, android.os.Handler, boolean, 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="AuthenticatorAttributesName">
<MemberSignature Language="C#" Value="public const string AuthenticatorAttributesName;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string AuthenticatorAttributesName" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.AuthenticatorAttributesName" />
<MemberSignature Language="F#" Value="val mutable AuthenticatorAttributesName : string" Usage="Android.Accounts.AccountManager.AuthenticatorAttributesName" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("AUTHENTICATOR_ATTRIBUTES_NAME")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("AUTHENTICATOR_ATTRIBUTES_NAME")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<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>
</remarks>
<since version="Added in API level 5" />
</Docs>
</Member>
<Member MemberName="AuthenticatorMetaDataName">
<MemberSignature Language="C#" Value="public const string AuthenticatorMetaDataName;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string AuthenticatorMetaDataName" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.AuthenticatorMetaDataName" />
<MemberSignature Language="F#" Value="val mutable AuthenticatorMetaDataName : string" Usage="Android.Accounts.AccountManager.AuthenticatorMetaDataName" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("AUTHENTICATOR_META_DATA_NAME")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("AUTHENTICATOR_META_DATA_NAME")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<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>
</remarks>
<since version="Added in API level 5" />
</Docs>
</Member>
<Member MemberName="BlockingGetAuthToken">
<MemberSignature Language="C#" Value="public virtual string? BlockingGetAuthToken (Android.Accounts.Account? account, string? authTokenType, bool notifyAuthFailure);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance string BlockingGetAuthToken(class Android.Accounts.Account account, string authTokenType, bool notifyAuthFailure) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.BlockingGetAuthToken(Android.Accounts.Account,System.String,System.Boolean)" />
<MemberSignature Language="F#" Value="abstract member BlockingGetAuthToken : Android.Accounts.Account * string * bool -> string
override this.BlockingGetAuthToken : Android.Accounts.Account * string * bool -> string" Usage="accountManager.BlockingGetAuthToken (account, authTokenType, notifyAuthFailure)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("blockingGetAuthToken", "(Landroid/accounts/Account;Ljava/lang/String;Z)Ljava/lang/String;", "GetBlockingGetAuthToken_Landroid_accounts_Account_Ljava_lang_String_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("blockingGetAuthToken", "(Landroid/accounts/Account;Ljava/lang/String;Z)Ljava/lang/String;", "GetBlockingGetAuthToken_Landroid_accounts_Account_Ljava_lang_String_ZHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.USE_CREDENTIALS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.USE_CREDENTIALS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="account" Type="Android.Accounts.Account" />
<Parameter Name="authTokenType" Type="System.String" />
<Parameter Name="notifyAuthFailure" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="account">The account to fetch an auth token for</param>
<param name="authTokenType">The auth token type, see <c>#getAuthToken getAuthToken()</c></param>
<param name="notifyAuthFailure">If true, display a notification and return null
if authentication fails; if false, prompt and wait for the user to
re-enter correct credentials before returning</param>
<summary>This convenience helper synchronously gets an auth token with
<c>#getAuthToken(Account, String, boolean, AccountManagerCallback, Handler)</c>.</summary>
<returns>An auth token of the specified type for this account, or null
if authentication fails or none can be fetched.</returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#blockingGetAuthToken(android.accounts.Account,%20java.lang.String,%20boolean)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.blockingGetAuthToken(android.accounts.Account, java.lang.String, boolean)</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 5" />
<exception cref="T:Android.Accounts.AuthenticatorException">if the authenticator failed to respond</exception>
<exception cref="T:Android.Accounts.OperationCanceledException">if the request was canceled for any
reason, including the user canceling a credential request</exception>
<exception cref="T:Java.IO.IOException">if the authenticator experienced an I/O problem
creating a new auth token, usually because of network trouble
</exception>
</Docs>
</Member>
<Member MemberName="ClearPassword">
<MemberSignature Language="C#" Value="public virtual void ClearPassword (Android.Accounts.Account? account);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void ClearPassword(class Android.Accounts.Account account) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.ClearPassword(Android.Accounts.Account)" />
<MemberSignature Language="F#" Value="abstract member ClearPassword : Android.Accounts.Account -> unit
override this.ClearPassword : Android.Accounts.Account -> unit" Usage="accountManager.ClearPassword account" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("clearPassword", "(Landroid/accounts/Account;)V", "GetClearPassword_Landroid_accounts_Account_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("clearPassword", "(Landroid/accounts/Account;)V", "GetClearPassword_Landroid_accounts_Account_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="account" Type="Android.Accounts.Account" />
</Parameters>
<Docs>
<param name="account">The account whose password to clear</param>
<summary>Forgets a saved password.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#clearPassword(android.accounts.Account)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.clearPassword(android.accounts.Account)</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 5" />
</Docs>
</Member>
<Member MemberName="ConfirmCredentials">
<MemberSignature Language="C#" Value="public virtual Android.Accounts.IAccountManagerFuture? ConfirmCredentials (Android.Accounts.Account? account, Android.OS.Bundle? options, Android.App.Activity? activity, Android.Accounts.IAccountManagerCallback? callback, Android.OS.Handler? handler);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.Accounts.IAccountManagerFuture ConfirmCredentials(class Android.Accounts.Account account, class Android.OS.Bundle options, class Android.App.Activity activity, class Android.Accounts.IAccountManagerCallback callback, class Android.OS.Handler handler) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.ConfirmCredentials(Android.Accounts.Account,Android.OS.Bundle,Android.App.Activity,Android.Accounts.IAccountManagerCallback,Android.OS.Handler)" />
<MemberSignature Language="F#" Value="abstract member ConfirmCredentials : Android.Accounts.Account * Android.OS.Bundle * Android.App.Activity * Android.Accounts.IAccountManagerCallback * Android.OS.Handler -> Android.Accounts.IAccountManagerFuture
override this.ConfirmCredentials : Android.Accounts.Account * Android.OS.Bundle * Android.App.Activity * Android.Accounts.IAccountManagerCallback * Android.OS.Handler -> Android.Accounts.IAccountManagerFuture" Usage="accountManager.ConfirmCredentials (account, options, activity, callback, handler)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("confirmCredentials", "(Landroid/accounts/Account;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;", "GetConfirmCredentials_Landroid_accounts_Account_Landroid_os_Bundle_Landroid_app_Activity_Landroid_accounts_AccountManagerCallback_Landroid_os_Handler_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("confirmCredentials", "(Landroid/accounts/Account;Landroid/os/Bundle;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;", "GetConfirmCredentials_Landroid_accounts_Account_Landroid_os_Bundle_Landroid_app_Activity_Landroid_accounts_AccountManagerCallback_Landroid_os_Handler_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.IAccountManagerFuture</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="account" Type="Android.Accounts.Account" />
<Parameter Name="options" Type="Android.OS.Bundle" />
<Parameter Name="activity" Type="Android.App.Activity" />
<Parameter Name="callback" Type="Android.Accounts.IAccountManagerCallback" />
<Parameter Name="handler" Type="Android.OS.Handler" />
</Parameters>
<Docs>
<param name="account">The account to confirm password knowledge for</param>
<param name="options">Authenticator-specific options for the request;
if the <c>#KEY_PASSWORD</c> string field is present, the
authenticator may use it directly rather than prompting the user;
may be null or empty</param>
<param name="activity">The <c>Activity</c> context to use for launching a new
authenticator-defined sub-Activity to prompt the user to enter a
password; used only to call startActivity(); if null, the prompt
will not be launched directly, but the necessary <c>Intent</c>
will be returned to the caller instead</param>
<param name="callback">Callback to invoke when the request completes,
null for no callback</param>
<param name="handler">
<c>Handler</c> identifying the callback thread,
null for the main thread</param>
<summary>Confirms that the user knows the password for an account to make extra
sure they are the owner of the account.</summary>
<returns>An <c>AccountManagerFuture</c> which resolves to a Bundle
with these fields if activity or password was supplied and
the account was successfully verified:
<ul>
<li> <c>#KEY_ACCOUNT_NAME</c> - the name of the account verified
<li> <c>#KEY_ACCOUNT_TYPE</c> - the type of the account
<li> <c>#KEY_BOOLEAN_RESULT</c> - true to indicate success
</ul>
If no activity or password was specified, the returned Bundle contains
<c>#KEY_INTENT</c> with the <c>Intent</c> needed to launch the
password prompt.
<p>Also the returning Bundle may contain <c>#KEY_LAST_AUTHENTICATED_TIME</c> indicating the last time the
credential was validated/created.
If an error occurred,<c>AccountManagerFuture#getResult()</c> throws:
<ul>
<li> <c>AuthenticatorException</c> if the authenticator failed to respond
<li> <c>OperationCanceledException</c> if the operation was canceled for
any reason, including the user canceling the password prompt
<li> <c>IOException</c> if the authenticator experienced an I/O problem
verifying the password, usually because of network trouble
</ul></returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#confirmCredentials(android.accounts.Account,%20android.os.Bundle,%20android.app.Activity,%20android.accounts.AccountManagerCallback%3Candroid.os.Bundle%3E,%20android.os.Handler)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.confirmCredentials(android.accounts.Account, android.os.Bundle, android.app.Activity, android.accounts.AccountManagerCallback<android.os.Bundle>, android.os.Handler)</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="EditProperties">
<MemberSignature Language="C#" Value="public virtual Android.Accounts.IAccountManagerFuture? EditProperties (string? accountType, Android.App.Activity? activity, Android.Accounts.IAccountManagerCallback? callback, Android.OS.Handler? handler);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.Accounts.IAccountManagerFuture EditProperties(string accountType, class Android.App.Activity activity, class Android.Accounts.IAccountManagerCallback callback, class Android.OS.Handler handler) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.Accounts.AccountManager.EditProperties(System.String,Android.App.Activity,Android.Accounts.IAccountManagerCallback,Android.OS.Handler)" />
<MemberSignature Language="F#" Value="abstract member EditProperties : string * Android.App.Activity * Android.Accounts.IAccountManagerCallback * Android.OS.Handler -> Android.Accounts.IAccountManagerFuture
override this.EditProperties : string * Android.App.Activity * Android.Accounts.IAccountManagerCallback * Android.OS.Handler -> Android.Accounts.IAccountManagerFuture" Usage="accountManager.EditProperties (accountType, activity, callback, handler)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("editProperties", "(Ljava/lang/String;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;", "GetEditProperties_Ljava_lang_String_Landroid_app_Activity_Landroid_accounts_AccountManagerCallback_Landroid_os_Handler_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("editProperties", "(Ljava/lang/String;Landroid/app/Activity;Landroid/accounts/AccountManagerCallback;Landroid/os/Handler;)Landroid/accounts/AccountManagerFuture;", "GetEditProperties_Ljava_lang_String_Landroid_app_Activity_Landroid_accounts_AccountManagerCallback_Landroid_os_Handler_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.RequiresPermission("android.permission.MANAGE_ACCOUNTS")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.IAccountManagerFuture</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="accountType" Type="System.String" />
<Parameter Name="activity" Type="Android.App.Activity" />
<Parameter Name="callback" Type="Android.Accounts.IAccountManagerCallback" />
<Parameter Name="handler" Type="Android.OS.Handler" />
</Parameters>
<Docs>
<param name="accountType">The account type associated with the authenticator
to adjust</param>
<param name="activity">The <c>Activity</c> context to use for launching a new
authenticator-defined sub-Activity to adjust authenticator settings;
used only to call startActivity(); if null, the settings dialog will
not be launched directly, but the necessary <c>Intent</c> will be
returned to the caller instead</param>
<param name="callback">Callback to invoke when the request completes,
null for no callback</param>
<param name="handler">
<c>Handler</c> identifying the callback thread,
null for the main thread</param>
<summary>Offers the user an opportunity to change an authenticator's settings.</summary>
<returns>An <c>AccountManagerFuture</c> which resolves to a Bundle
which is empty if properties were edited successfully, or
if no activity was specified, contains only <c>#KEY_INTENT</c>
needed to launch the authenticator's settings dialog.
If an error occurred, <c>AccountManagerFuture#getResult()</c>
throws:
<ul>
<li> <c>AuthenticatorException</c> if no authenticator was registered for
this account type or the authenticator failed to respond
<li> <c>OperationCanceledException</c> if the operation was canceled for
any reason, including the user canceling the settings dialog
<li> <c>IOException</c> if the authenticator experienced an I/O problem
updating settings, usually because of network trouble
</ul></returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/accounts/AccountManager#editProperties(java.lang.String,%20android.app.Activity,%20android.accounts.AccountManagerCallback%3Candroid.os.Bundle%3E,%20android.os.Handler)" title="Reference documentation">Java documentation for <code>android.accounts.AccountManager.editProperties(java.lang.String, android.app.Activity, android.accounts.AccountManagerCallback<android.os.Bundle>, android.os.Handler)</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="ErrorCodeBadArguments">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeBadArguments = 7;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeBadArguments = (7)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeBadArguments" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeBadArguments : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeBadArguments" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_BAD_ARGUMENTS")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_BAD_ARGUMENTS")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>7</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeBadAuthentication">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeBadAuthentication = 9;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeBadAuthentication = (9)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeBadAuthentication" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeBadAuthentication : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeBadAuthentication" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_BAD_AUTHENTICATION")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_BAD_AUTHENTICATION")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>9</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeBadRequest">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeBadRequest = 8;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeBadRequest = (8)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeBadRequest" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeBadRequest : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeBadRequest" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_BAD_REQUEST")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_BAD_REQUEST")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>8</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeCanceled">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeCanceled = 4;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeCanceled = (4)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeCanceled" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeCanceled : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeCanceled" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_CANCELED")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_CANCELED")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>4</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeInvalidResponse">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeInvalidResponse = 5;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeInvalidResponse = (5)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeInvalidResponse" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeInvalidResponse : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeInvalidResponse" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_INVALID_RESPONSE")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_INVALID_RESPONSE")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>5</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeNetworkError">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeNetworkError = 3;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeNetworkError = (3)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeNetworkError" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeNetworkError : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeNetworkError" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_NETWORK_ERROR")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_NETWORK_ERROR")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>3</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeRemoteException">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeRemoteException = 1;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeRemoteException = (1)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeRemoteException" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeRemoteException : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeRemoteException" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_REMOTE_EXCEPTION")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_REMOTE_EXCEPTION")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<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>
</remarks>
</Docs>
</Member>
<Member MemberName="ErrorCodeUnsupportedOperation">
<MemberSignature Language="C#" Value="public const Android.Accounts.ErrorCode ErrorCodeUnsupportedOperation = 6;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.Accounts.ErrorCode ErrorCodeUnsupportedOperation = (6)" />
<MemberSignature Language="DocId" Value="F:Android.Accounts.AccountManager.ErrorCodeUnsupportedOperation" />
<MemberSignature Language="F#" Value="val mutable ErrorCodeUnsupportedOperation : Android.Accounts.ErrorCode" Usage="Android.Accounts.AccountManager.ErrorCodeUnsupportedOperation" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
<AssemblyName>Mono.Android</AssemblyName>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("ERROR_CODE_UNSUPPORTED_OPERATION")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("ERROR_CODE_UNSUPPORTED_OPERATION")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.Accounts.ErrorCode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Accounts.ErrorCode</ReturnType>
</ReturnValue>
<MemberValue>6</MemberValue>
<Docs>
<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>
</remarks>