-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWifiManager.cs
1909 lines (1697 loc) · 116 KB
/
WifiManager.cs
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
/*
* Copyright 2024 MASES s.r.l.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Refer to LICENSE for more information.
*/
/*
* This file is generated by MASES.JNetReflector (ver. 2.5.1.0)
* using android.jar as reference
*/
using MASES.JCOBridge.C2JBridge;
namespace Android.Net.Wifi
{
#region WifiManager
public partial class WifiManager
{
#region Constructors
#endregion
#region Class/Interface conversion operators
#endregion
#region Fields
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#ACTION_REMOVE_SUGGESTION_DISCONNECT"/>
/// </summary>
public static int ACTION_REMOVE_SUGGESTION_DISCONNECT { get { if (!_ACTION_REMOVE_SUGGESTION_DISCONNECTReady) { _ACTION_REMOVE_SUGGESTION_DISCONNECTContent = SGetField<int>(LocalBridgeClazz, "ACTION_REMOVE_SUGGESTION_DISCONNECT"); _ACTION_REMOVE_SUGGESTION_DISCONNECTReady = true; } return _ACTION_REMOVE_SUGGESTION_DISCONNECTContent; } }
private static int _ACTION_REMOVE_SUGGESTION_DISCONNECTContent = default;
private static bool _ACTION_REMOVE_SUGGESTION_DISCONNECTReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#ACTION_REMOVE_SUGGESTION_LINGER"/>
/// </summary>
public static int ACTION_REMOVE_SUGGESTION_LINGER { get { if (!_ACTION_REMOVE_SUGGESTION_LINGERReady) { _ACTION_REMOVE_SUGGESTION_LINGERContent = SGetField<int>(LocalBridgeClazz, "ACTION_REMOVE_SUGGESTION_LINGER"); _ACTION_REMOVE_SUGGESTION_LINGERReady = true; } return _ACTION_REMOVE_SUGGESTION_LINGERContent; } }
private static int _ACTION_REMOVE_SUGGESTION_LINGERContent = default;
private static bool _ACTION_REMOVE_SUGGESTION_LINGERReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATION"/>
/// </summary>
public static int STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATION { get { if (!_STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATIONReady) { _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATIONContent = SGetField<int>(LocalBridgeClazz, "STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATION"); _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATIONReady = true; } return _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATIONContent; } }
private static int _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATIONContent = default;
private static bool _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_ASSOCIATIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATION"/>
/// </summary>
public static int STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATION { get { if (!_STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATIONReady) { _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATIONContent = SGetField<int>(LocalBridgeClazz, "STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATION"); _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATIONReady = true; } return _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATIONContent; } }
private static int _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATIONContent = default;
private static bool _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_AUTHENTICATIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONING"/>
/// </summary>
public static int STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONING { get { if (!_STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONINGReady) { _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONINGContent = SGetField<int>(LocalBridgeClazz, "STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONING"); _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONINGReady = true; } return _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONINGContent; } }
private static int _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONINGContent = default;
private static bool _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_IP_PROVISIONINGReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSE"/>
/// </summary>
public static int STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSE { get { if (!_STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSEReady) { _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSEContent = SGetField<int>(LocalBridgeClazz, "STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSE"); _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSEReady = true; } return _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSEContent; } }
private static int _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSEContent = default;
private static bool _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NO_RESPONSEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUND"/>
/// </summary>
public static int STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUND { get { if (!_STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUNDReady) { _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUNDContent = SGetField<int>(LocalBridgeClazz, "STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUND"); _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUNDReady = true; } return _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUNDContent; } }
private static int _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUNDContent = default;
private static bool _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_NOT_FOUNDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWN"/>
/// </summary>
public static int STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWN { get { if (!_STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWNReady) { _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWNContent = SGetField<int>(LocalBridgeClazz, "STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWN"); _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWNReady = true; } return _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWNContent; } }
private static int _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWNContent = default;
private static bool _STATUS_LOCAL_ONLY_CONNECTION_FAILURE_UNKNOWNReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATEReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATEContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATE"); _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATEReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATEContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATEContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_DUPLICATEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APPReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APPContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APP"); _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APPReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APPContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APPContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_EXCEEDS_MAX_PER_APPReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALID"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALID { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALIDReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALIDContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALID"); _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALIDReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALIDContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALIDContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_INVALIDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWED"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWED { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWEDReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWEDContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWED"); _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWEDReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWEDContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWEDContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_ADD_NOT_ALLOWEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWED"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWED { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWEDReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWEDContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWED"); _STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWEDReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWEDContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWEDContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_APP_DISALLOWEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNALReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNALContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNAL"); _STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNALReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNALContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNALContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_INTERNALReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALIDReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALIDContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALID"); _STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALIDReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALIDContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALIDContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_REMOVE_INVALIDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMIN"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMIN { get { if (!_STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMINReady) { _STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMINContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMIN"); _STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMINReady = true; } return _STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMINContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMINContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_ERROR_RESTRICTED_BY_ADMINReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_NETWORK_SUGGESTIONS_SUCCESS"/>
/// </summary>
public static int STATUS_NETWORK_SUGGESTIONS_SUCCESS { get { if (!_STATUS_NETWORK_SUGGESTIONS_SUCCESSReady) { _STATUS_NETWORK_SUGGESTIONS_SUCCESSContent = SGetField<int>(LocalBridgeClazz, "STATUS_NETWORK_SUGGESTIONS_SUCCESS"); _STATUS_NETWORK_SUGGESTIONS_SUCCESSReady = true; } return _STATUS_NETWORK_SUGGESTIONS_SUCCESSContent; } }
private static int _STATUS_NETWORK_SUGGESTIONS_SUCCESSContent = default;
private static bool _STATUS_NETWORK_SUGGESTIONS_SUCCESSReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGE"/>
/// </summary>
public static int STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGE { get { if (!_STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGEReady) { _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGEContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGE"); _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGEReady = true; } return _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGEContent; } }
private static int _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGEContent = default;
private static bool _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_CARRIER_PRIVILEGEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USER"/>
/// </summary>
public static int STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USER { get { if (!_STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USERReady) { _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USERContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USER"); _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USERReady = true; } return _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USERContent; } }
private static int _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USERContent = default;
private static bool _STATUS_SUGGESTION_APPROVAL_APPROVED_BY_USERReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_APPROVAL_PENDING"/>
/// </summary>
public static int STATUS_SUGGESTION_APPROVAL_PENDING { get { if (!_STATUS_SUGGESTION_APPROVAL_PENDINGReady) { _STATUS_SUGGESTION_APPROVAL_PENDINGContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_APPROVAL_PENDING"); _STATUS_SUGGESTION_APPROVAL_PENDINGReady = true; } return _STATUS_SUGGESTION_APPROVAL_PENDINGContent; } }
private static int _STATUS_SUGGESTION_APPROVAL_PENDINGContent = default;
private static bool _STATUS_SUGGESTION_APPROVAL_PENDINGReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USER"/>
/// </summary>
public static int STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USER { get { if (!_STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USERReady) { _STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USERContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USER"); _STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USERReady = true; } return _STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USERContent; } }
private static int _STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USERContent = default;
private static bool _STATUS_SUGGESTION_APPROVAL_REJECTED_BY_USERReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_APPROVAL_UNKNOWN"/>
/// </summary>
public static int STATUS_SUGGESTION_APPROVAL_UNKNOWN { get { if (!_STATUS_SUGGESTION_APPROVAL_UNKNOWNReady) { _STATUS_SUGGESTION_APPROVAL_UNKNOWNContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_APPROVAL_UNKNOWN"); _STATUS_SUGGESTION_APPROVAL_UNKNOWNReady = true; } return _STATUS_SUGGESTION_APPROVAL_UNKNOWNContent; } }
private static int _STATUS_SUGGESTION_APPROVAL_UNKNOWNContent = default;
private static bool _STATUS_SUGGESTION_APPROVAL_UNKNOWNReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATION"/>
/// </summary>
public static int STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATION { get { if (!_STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATIONReady) { _STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATIONContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATION"); _STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATIONReady = true; } return _STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATIONContent; } }
private static int _STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATIONContent = default;
private static bool _STATUS_SUGGESTION_CONNECTION_FAILURE_ASSOCIATIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATION"/>
/// </summary>
public static int STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATION { get { if (!_STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATIONReady) { _STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATIONContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATION"); _STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATIONReady = true; } return _STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATIONContent; } }
private static int _STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATIONContent = default;
private static bool _STATUS_SUGGESTION_CONNECTION_FAILURE_AUTHENTICATIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONING"/>
/// </summary>
public static int STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONING { get { if (!_STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONINGReady) { _STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONINGContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONING"); _STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONINGReady = true; } return _STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONINGContent; } }
private static int _STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONINGContent = default;
private static bool _STATUS_SUGGESTION_CONNECTION_FAILURE_IP_PROVISIONINGReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWN"/>
/// </summary>
public static int STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWN { get { if (!_STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWNReady) { _STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWNContent = SGetField<int>(LocalBridgeClazz, "STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWN"); _STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWNReady = true; } return _STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWNContent; } }
private static int _STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWNContent = default;
private static bool _STATUS_SUGGESTION_CONNECTION_FAILURE_UNKNOWNReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_INTERFACE_TYPE_AP"/>
/// </summary>
public static int WIFI_INTERFACE_TYPE_AP { get { if (!_WIFI_INTERFACE_TYPE_APReady) { _WIFI_INTERFACE_TYPE_APContent = SGetField<int>(LocalBridgeClazz, "WIFI_INTERFACE_TYPE_AP"); _WIFI_INTERFACE_TYPE_APReady = true; } return _WIFI_INTERFACE_TYPE_APContent; } }
private static int _WIFI_INTERFACE_TYPE_APContent = default;
private static bool _WIFI_INTERFACE_TYPE_APReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_INTERFACE_TYPE_AWARE"/>
/// </summary>
public static int WIFI_INTERFACE_TYPE_AWARE { get { if (!_WIFI_INTERFACE_TYPE_AWAREReady) { _WIFI_INTERFACE_TYPE_AWAREContent = SGetField<int>(LocalBridgeClazz, "WIFI_INTERFACE_TYPE_AWARE"); _WIFI_INTERFACE_TYPE_AWAREReady = true; } return _WIFI_INTERFACE_TYPE_AWAREContent; } }
private static int _WIFI_INTERFACE_TYPE_AWAREContent = default;
private static bool _WIFI_INTERFACE_TYPE_AWAREReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_INTERFACE_TYPE_DIRECT"/>
/// </summary>
public static int WIFI_INTERFACE_TYPE_DIRECT { get { if (!_WIFI_INTERFACE_TYPE_DIRECTReady) { _WIFI_INTERFACE_TYPE_DIRECTContent = SGetField<int>(LocalBridgeClazz, "WIFI_INTERFACE_TYPE_DIRECT"); _WIFI_INTERFACE_TYPE_DIRECTReady = true; } return _WIFI_INTERFACE_TYPE_DIRECTContent; } }
private static int _WIFI_INTERFACE_TYPE_DIRECTContent = default;
private static bool _WIFI_INTERFACE_TYPE_DIRECTReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_INTERFACE_TYPE_STA"/>
/// </summary>
public static int WIFI_INTERFACE_TYPE_STA { get { if (!_WIFI_INTERFACE_TYPE_STAReady) { _WIFI_INTERFACE_TYPE_STAContent = SGetField<int>(LocalBridgeClazz, "WIFI_INTERFACE_TYPE_STA"); _WIFI_INTERFACE_TYPE_STAReady = true; } return _WIFI_INTERFACE_TYPE_STAContent; } }
private static int _WIFI_INTERFACE_TYPE_STAContent = default;
private static bool _WIFI_INTERFACE_TYPE_STAReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_MODE_FULL_LOW_LATENCY"/>
/// </summary>
public static int WIFI_MODE_FULL_LOW_LATENCY { get { if (!_WIFI_MODE_FULL_LOW_LATENCYReady) { _WIFI_MODE_FULL_LOW_LATENCYContent = SGetField<int>(LocalBridgeClazz, "WIFI_MODE_FULL_LOW_LATENCY"); _WIFI_MODE_FULL_LOW_LATENCYReady = true; } return _WIFI_MODE_FULL_LOW_LATENCYContent; } }
private static int _WIFI_MODE_FULL_LOW_LATENCYContent = default;
private static bool _WIFI_MODE_FULL_LOW_LATENCYReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_MULTI_INTERNET_MODE_DBS_AP"/>
/// </summary>
public static int WIFI_MULTI_INTERNET_MODE_DBS_AP { get { if (!_WIFI_MULTI_INTERNET_MODE_DBS_APReady) { _WIFI_MULTI_INTERNET_MODE_DBS_APContent = SGetField<int>(LocalBridgeClazz, "WIFI_MULTI_INTERNET_MODE_DBS_AP"); _WIFI_MULTI_INTERNET_MODE_DBS_APReady = true; } return _WIFI_MULTI_INTERNET_MODE_DBS_APContent; } }
private static int _WIFI_MULTI_INTERNET_MODE_DBS_APContent = default;
private static bool _WIFI_MULTI_INTERNET_MODE_DBS_APReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_MULTI_INTERNET_MODE_DISABLED"/>
/// </summary>
public static int WIFI_MULTI_INTERNET_MODE_DISABLED { get { if (!_WIFI_MULTI_INTERNET_MODE_DISABLEDReady) { _WIFI_MULTI_INTERNET_MODE_DISABLEDContent = SGetField<int>(LocalBridgeClazz, "WIFI_MULTI_INTERNET_MODE_DISABLED"); _WIFI_MULTI_INTERNET_MODE_DISABLEDReady = true; } return _WIFI_MULTI_INTERNET_MODE_DISABLEDContent; } }
private static int _WIFI_MULTI_INTERNET_MODE_DISABLEDContent = default;
private static bool _WIFI_MULTI_INTERNET_MODE_DISABLEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_MULTI_INTERNET_MODE_MULTI_AP"/>
/// </summary>
public static int WIFI_MULTI_INTERNET_MODE_MULTI_AP { get { if (!_WIFI_MULTI_INTERNET_MODE_MULTI_APReady) { _WIFI_MULTI_INTERNET_MODE_MULTI_APContent = SGetField<int>(LocalBridgeClazz, "WIFI_MULTI_INTERNET_MODE_MULTI_AP"); _WIFI_MULTI_INTERNET_MODE_MULTI_APReady = true; } return _WIFI_MULTI_INTERNET_MODE_MULTI_APContent; } }
private static int _WIFI_MULTI_INTERNET_MODE_MULTI_APContent = default;
private static bool _WIFI_MULTI_INTERNET_MODE_MULTI_APReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_STATE_DISABLED"/>
/// </summary>
public static int WIFI_STATE_DISABLED { get { if (!_WIFI_STATE_DISABLEDReady) { _WIFI_STATE_DISABLEDContent = SGetField<int>(LocalBridgeClazz, "WIFI_STATE_DISABLED"); _WIFI_STATE_DISABLEDReady = true; } return _WIFI_STATE_DISABLEDContent; } }
private static int _WIFI_STATE_DISABLEDContent = default;
private static bool _WIFI_STATE_DISABLEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_STATE_DISABLING"/>
/// </summary>
public static int WIFI_STATE_DISABLING { get { if (!_WIFI_STATE_DISABLINGReady) { _WIFI_STATE_DISABLINGContent = SGetField<int>(LocalBridgeClazz, "WIFI_STATE_DISABLING"); _WIFI_STATE_DISABLINGReady = true; } return _WIFI_STATE_DISABLINGContent; } }
private static int _WIFI_STATE_DISABLINGContent = default;
private static bool _WIFI_STATE_DISABLINGReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_STATE_ENABLED"/>
/// </summary>
public static int WIFI_STATE_ENABLED { get { if (!_WIFI_STATE_ENABLEDReady) { _WIFI_STATE_ENABLEDContent = SGetField<int>(LocalBridgeClazz, "WIFI_STATE_ENABLED"); _WIFI_STATE_ENABLEDReady = true; } return _WIFI_STATE_ENABLEDContent; } }
private static int _WIFI_STATE_ENABLEDContent = default;
private static bool _WIFI_STATE_ENABLEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_STATE_ENABLING"/>
/// </summary>
public static int WIFI_STATE_ENABLING { get { if (!_WIFI_STATE_ENABLINGReady) { _WIFI_STATE_ENABLINGContent = SGetField<int>(LocalBridgeClazz, "WIFI_STATE_ENABLING"); _WIFI_STATE_ENABLINGReady = true; } return _WIFI_STATE_ENABLINGContent; } }
private static int _WIFI_STATE_ENABLINGContent = default;
private static bool _WIFI_STATE_ENABLINGReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_STATE_UNKNOWN"/>
/// </summary>
public static int WIFI_STATE_UNKNOWN { get { if (!_WIFI_STATE_UNKNOWNReady) { _WIFI_STATE_UNKNOWNContent = SGetField<int>(LocalBridgeClazz, "WIFI_STATE_UNKNOWN"); _WIFI_STATE_UNKNOWNReady = true; } return _WIFI_STATE_UNKNOWNContent; } }
private static int _WIFI_STATE_UNKNOWNContent = default;
private static bool _WIFI_STATE_UNKNOWNReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#ACTION_PICK_WIFI_NETWORK"/>
/// </summary>
public static Java.Lang.String ACTION_PICK_WIFI_NETWORK { get { if (!_ACTION_PICK_WIFI_NETWORKReady) { _ACTION_PICK_WIFI_NETWORKContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "ACTION_PICK_WIFI_NETWORK"); _ACTION_PICK_WIFI_NETWORKReady = true; } return _ACTION_PICK_WIFI_NETWORKContent; } }
private static Java.Lang.String _ACTION_PICK_WIFI_NETWORKContent = default;
private static bool _ACTION_PICK_WIFI_NETWORKReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#ACTION_REQUEST_SCAN_ALWAYS_AVAILABLE"/>
/// </summary>
public static Java.Lang.String ACTION_REQUEST_SCAN_ALWAYS_AVAILABLE { get { if (!_ACTION_REQUEST_SCAN_ALWAYS_AVAILABLEReady) { _ACTION_REQUEST_SCAN_ALWAYS_AVAILABLEContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "ACTION_REQUEST_SCAN_ALWAYS_AVAILABLE"); _ACTION_REQUEST_SCAN_ALWAYS_AVAILABLEReady = true; } return _ACTION_REQUEST_SCAN_ALWAYS_AVAILABLEContent; } }
private static Java.Lang.String _ACTION_REQUEST_SCAN_ALWAYS_AVAILABLEContent = default;
private static bool _ACTION_REQUEST_SCAN_ALWAYS_AVAILABLEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTION"/>
/// </summary>
public static Java.Lang.String ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTION { get { if (!_ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTIONReady) { _ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTION"); _ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTIONReady = true; } return _ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTIONContent; } }
private static Java.Lang.String _ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTIONContent = default;
private static bool _ACTION_WIFI_NETWORK_SUGGESTION_POST_CONNECTIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#ACTION_WIFI_SCAN_AVAILABILITY_CHANGED"/>
/// </summary>
public static Java.Lang.String ACTION_WIFI_SCAN_AVAILABILITY_CHANGED { get { if (!_ACTION_WIFI_SCAN_AVAILABILITY_CHANGEDReady) { _ACTION_WIFI_SCAN_AVAILABILITY_CHANGEDContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "ACTION_WIFI_SCAN_AVAILABILITY_CHANGED"); _ACTION_WIFI_SCAN_AVAILABILITY_CHANGEDReady = true; } return _ACTION_WIFI_SCAN_AVAILABILITY_CHANGEDContent; } }
private static Java.Lang.String _ACTION_WIFI_SCAN_AVAILABILITY_CHANGEDContent = default;
private static bool _ACTION_WIFI_SCAN_AVAILABILITY_CHANGEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#CHANNEL_DATA_KEY_FREQUENCY_MHZ"/>
/// </summary>
public static Java.Lang.String CHANNEL_DATA_KEY_FREQUENCY_MHZ { get { if (!_CHANNEL_DATA_KEY_FREQUENCY_MHZReady) { _CHANNEL_DATA_KEY_FREQUENCY_MHZContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "CHANNEL_DATA_KEY_FREQUENCY_MHZ"); _CHANNEL_DATA_KEY_FREQUENCY_MHZReady = true; } return _CHANNEL_DATA_KEY_FREQUENCY_MHZContent; } }
private static Java.Lang.String _CHANNEL_DATA_KEY_FREQUENCY_MHZContent = default;
private static bool _CHANNEL_DATA_KEY_FREQUENCY_MHZReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#CHANNEL_DATA_KEY_NUM_AP"/>
/// </summary>
public static Java.Lang.String CHANNEL_DATA_KEY_NUM_AP { get { if (!_CHANNEL_DATA_KEY_NUM_APReady) { _CHANNEL_DATA_KEY_NUM_APContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "CHANNEL_DATA_KEY_NUM_AP"); _CHANNEL_DATA_KEY_NUM_APReady = true; } return _CHANNEL_DATA_KEY_NUM_APContent; } }
private static Java.Lang.String _CHANNEL_DATA_KEY_NUM_APContent = default;
private static bool _CHANNEL_DATA_KEY_NUM_APReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_NETWORK_INFO"/>
/// </summary>
public static Java.Lang.String EXTRA_NETWORK_INFO { get { if (!_EXTRA_NETWORK_INFOReady) { _EXTRA_NETWORK_INFOContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_NETWORK_INFO"); _EXTRA_NETWORK_INFOReady = true; } return _EXTRA_NETWORK_INFOContent; } }
private static Java.Lang.String _EXTRA_NETWORK_INFOContent = default;
private static bool _EXTRA_NETWORK_INFOReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_NETWORK_SUGGESTION"/>
/// </summary>
public static Java.Lang.String EXTRA_NETWORK_SUGGESTION { get { if (!_EXTRA_NETWORK_SUGGESTIONReady) { _EXTRA_NETWORK_SUGGESTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_NETWORK_SUGGESTION"); _EXTRA_NETWORK_SUGGESTIONReady = true; } return _EXTRA_NETWORK_SUGGESTIONContent; } }
private static Java.Lang.String _EXTRA_NETWORK_SUGGESTIONContent = default;
private static bool _EXTRA_NETWORK_SUGGESTIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_NEW_RSSI"/>
/// </summary>
public static Java.Lang.String EXTRA_NEW_RSSI { get { if (!_EXTRA_NEW_RSSIReady) { _EXTRA_NEW_RSSIContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_NEW_RSSI"); _EXTRA_NEW_RSSIReady = true; } return _EXTRA_NEW_RSSIContent; } }
private static Java.Lang.String _EXTRA_NEW_RSSIContent = default;
private static bool _EXTRA_NEW_RSSIReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_PREVIOUS_WIFI_STATE"/>
/// </summary>
public static Java.Lang.String EXTRA_PREVIOUS_WIFI_STATE { get { if (!_EXTRA_PREVIOUS_WIFI_STATEReady) { _EXTRA_PREVIOUS_WIFI_STATEContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_PREVIOUS_WIFI_STATE"); _EXTRA_PREVIOUS_WIFI_STATEReady = true; } return _EXTRA_PREVIOUS_WIFI_STATEContent; } }
private static Java.Lang.String _EXTRA_PREVIOUS_WIFI_STATEContent = default;
private static bool _EXTRA_PREVIOUS_WIFI_STATEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_RESULTS_UPDATED"/>
/// </summary>
public static Java.Lang.String EXTRA_RESULTS_UPDATED { get { if (!_EXTRA_RESULTS_UPDATEDReady) { _EXTRA_RESULTS_UPDATEDContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_RESULTS_UPDATED"); _EXTRA_RESULTS_UPDATEDReady = true; } return _EXTRA_RESULTS_UPDATEDContent; } }
private static Java.Lang.String _EXTRA_RESULTS_UPDATEDContent = default;
private static bool _EXTRA_RESULTS_UPDATEDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_SCAN_AVAILABLE"/>
/// </summary>
public static Java.Lang.String EXTRA_SCAN_AVAILABLE { get { if (!_EXTRA_SCAN_AVAILABLEReady) { _EXTRA_SCAN_AVAILABLEContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_SCAN_AVAILABLE"); _EXTRA_SCAN_AVAILABLEReady = true; } return _EXTRA_SCAN_AVAILABLEContent; } }
private static Java.Lang.String _EXTRA_SCAN_AVAILABLEContent = default;
private static bool _EXTRA_SCAN_AVAILABLEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#EXTRA_WIFI_STATE"/>
/// </summary>
public static Java.Lang.String EXTRA_WIFI_STATE { get { if (!_EXTRA_WIFI_STATEReady) { _EXTRA_WIFI_STATEContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "EXTRA_WIFI_STATE"); _EXTRA_WIFI_STATEReady = true; } return _EXTRA_WIFI_STATEContent; } }
private static Java.Lang.String _EXTRA_WIFI_STATEContent = default;
private static bool _EXTRA_WIFI_STATEReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#NETWORK_IDS_CHANGED_ACTION"/>
/// </summary>
public static Java.Lang.String NETWORK_IDS_CHANGED_ACTION { get { if (!_NETWORK_IDS_CHANGED_ACTIONReady) { _NETWORK_IDS_CHANGED_ACTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "NETWORK_IDS_CHANGED_ACTION"); _NETWORK_IDS_CHANGED_ACTIONReady = true; } return _NETWORK_IDS_CHANGED_ACTIONContent; } }
private static Java.Lang.String _NETWORK_IDS_CHANGED_ACTIONContent = default;
private static bool _NETWORK_IDS_CHANGED_ACTIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#NETWORK_STATE_CHANGED_ACTION"/>
/// </summary>
public static Java.Lang.String NETWORK_STATE_CHANGED_ACTION { get { if (!_NETWORK_STATE_CHANGED_ACTIONReady) { _NETWORK_STATE_CHANGED_ACTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "NETWORK_STATE_CHANGED_ACTION"); _NETWORK_STATE_CHANGED_ACTIONReady = true; } return _NETWORK_STATE_CHANGED_ACTIONContent; } }
private static Java.Lang.String _NETWORK_STATE_CHANGED_ACTIONContent = default;
private static bool _NETWORK_STATE_CHANGED_ACTIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#RSSI_CHANGED_ACTION"/>
/// </summary>
public static Java.Lang.String RSSI_CHANGED_ACTION { get { if (!_RSSI_CHANGED_ACTIONReady) { _RSSI_CHANGED_ACTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "RSSI_CHANGED_ACTION"); _RSSI_CHANGED_ACTIONReady = true; } return _RSSI_CHANGED_ACTIONContent; } }
private static Java.Lang.String _RSSI_CHANGED_ACTIONContent = default;
private static bool _RSSI_CHANGED_ACTIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#SCAN_RESULTS_AVAILABLE_ACTION"/>
/// </summary>
public static Java.Lang.String SCAN_RESULTS_AVAILABLE_ACTION { get { if (!_SCAN_RESULTS_AVAILABLE_ACTIONReady) { _SCAN_RESULTS_AVAILABLE_ACTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "SCAN_RESULTS_AVAILABLE_ACTION"); _SCAN_RESULTS_AVAILABLE_ACTIONReady = true; } return _SCAN_RESULTS_AVAILABLE_ACTIONContent; } }
private static Java.Lang.String _SCAN_RESULTS_AVAILABLE_ACTIONContent = default;
private static bool _SCAN_RESULTS_AVAILABLE_ACTIONReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#UNKNOWN_SSID"/>
/// </summary>
public static Java.Lang.String UNKNOWN_SSID { get { if (!_UNKNOWN_SSIDReady) { _UNKNOWN_SSIDContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "UNKNOWN_SSID"); _UNKNOWN_SSIDReady = true; } return _UNKNOWN_SSIDContent; } }
private static Java.Lang.String _UNKNOWN_SSIDContent = default;
private static bool _UNKNOWN_SSIDReady = false; // this is used because in case of generics
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#WIFI_STATE_CHANGED_ACTION"/>
/// </summary>
public static Java.Lang.String WIFI_STATE_CHANGED_ACTION { get { if (!_WIFI_STATE_CHANGED_ACTIONReady) { _WIFI_STATE_CHANGED_ACTIONContent = SGetField<Java.Lang.String>(LocalBridgeClazz, "WIFI_STATE_CHANGED_ACTION"); _WIFI_STATE_CHANGED_ACTIONReady = true; } return _WIFI_STATE_CHANGED_ACTIONContent; } }
private static Java.Lang.String _WIFI_STATE_CHANGED_ACTIONContent = default;
private static bool _WIFI_STATE_CHANGED_ACTIONReady = false; // this is used because in case of generics
#endregion
#region Static methods
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#compareSignalLevel(int,int)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <param name="arg1"><see cref="int"/></param>
/// <returns><see cref="int"/></returns>
public static int CompareSignalLevel(int arg0, int arg1)
{
return SExecute<int>(LocalBridgeClazz, "compareSignalLevel", arg0, arg1);
}
#endregion
#region Instance methods
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getCallerConfiguredNetworks()"/>
/// </summary>
public Java.Util.List<Android.Net.Wifi.WifiConfiguration> CallerConfiguredNetworks
{
get { return IExecuteWithSignature<Java.Util.List<Android.Net.Wifi.WifiConfiguration>>("getCallerConfiguredNetworks", "()Ljava/util/List;"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getMaxNumberOfChannelsPerNetworkSpecifierRequest()"/>
/// </summary>
public int MaxNumberOfChannelsPerNetworkSpecifierRequest
{
get { return IExecuteWithSignature<int>("getMaxNumberOfChannelsPerNetworkSpecifierRequest", "()I"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getMaxNumberOfNetworkSuggestionsPerApp()"/>
/// </summary>
public int MaxNumberOfNetworkSuggestionsPerApp
{
get { return IExecuteWithSignature<int>("getMaxNumberOfNetworkSuggestionsPerApp", "()I"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getMaxSignalLevel()"/>
/// </summary>
public int MaxSignalLevel
{
get { return IExecuteWithSignature<int>("getMaxSignalLevel", "()I"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getNetworkSuggestions()"/>
/// </summary>
public Java.Util.List<Android.Net.Wifi.WifiNetworkSuggestion> NetworkSuggestions
{
get { return IExecuteWithSignature<Java.Util.List<Android.Net.Wifi.WifiNetworkSuggestion>>("getNetworkSuggestions", "()Ljava/util/List;"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getScanResults()"/>
/// </summary>
public Java.Util.List<Android.Net.Wifi.ScanResult> ScanResults
{
get { return IExecuteWithSignature<Java.Util.List<Android.Net.Wifi.ScanResult>>("getScanResults", "()Ljava/util/List;"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getStaConcurrencyForMultiInternetMode()"/>
/// </summary>
public int StaConcurrencyForMultiInternetMode
{
get { return IExecuteWithSignature<int>("getStaConcurrencyForMultiInternetMode", "()I"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getWifiState()"/>
/// </summary>
public int WifiState
{
get { return IExecuteWithSignature<int>("getWifiState", "()I"); }
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#createMulticastLock(java.lang.String)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Lang.String"/></param>
/// <returns><see cref="Android.Net.Wifi.WifiManager.MulticastLock"/></returns>
public Android.Net.Wifi.WifiManager.MulticastLock CreateMulticastLock(Java.Lang.String arg0)
{
return IExecuteWithSignature<Android.Net.Wifi.WifiManager.MulticastLock>("createMulticastLock", "(Ljava/lang/String;)Landroid/net/wifi/WifiManager$MulticastLock;", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#createWifiLock(int,java.lang.String)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <param name="arg1"><see cref="Java.Lang.String"/></param>
/// <returns><see cref="Android.Net.Wifi.WifiManager.WifiLock"/></returns>
public Android.Net.Wifi.WifiManager.WifiLock CreateWifiLock(int arg0, Java.Lang.String arg1)
{
return IExecute<Android.Net.Wifi.WifiManager.WifiLock>("createWifiLock", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#is24GHzBandSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool Is24GHzBandSupported()
{
return IExecuteWithSignature<bool>("is24GHzBandSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#is5GHzBandSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool Is5GHzBandSupported()
{
return IExecuteWithSignature<bool>("is5GHzBandSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#is60GHzBandSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool Is60GHzBandSupported()
{
return IExecuteWithSignature<bool>("is60GHzBandSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#is6GHzBandSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool Is6GHzBandSupported()
{
return IExecuteWithSignature<bool>("is6GHzBandSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isAutoWakeupEnabled()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsAutoWakeupEnabled()
{
return IExecuteWithSignature<bool>("isAutoWakeupEnabled", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isBridgedApConcurrencySupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsBridgedApConcurrencySupported()
{
return IExecuteWithSignature<bool>("isBridgedApConcurrencySupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isCarrierNetworkOffloadEnabled(int,boolean)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <param name="arg1"><see cref="bool"/></param>
/// <returns><see cref="bool"/></returns>
public bool IsCarrierNetworkOffloadEnabled(int arg0, bool arg1)
{
return IExecute<bool>("isCarrierNetworkOffloadEnabled", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isDecoratedIdentitySupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsDecoratedIdentitySupported()
{
return IExecuteWithSignature<bool>("isDecoratedIdentitySupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isDualBandSimultaneousSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsDualBandSimultaneousSupported()
{
return IExecuteWithSignature<bool>("isDualBandSimultaneousSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isEasyConnectDppAkmSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsEasyConnectDppAkmSupported()
{
return IExecuteWithSignature<bool>("isEasyConnectDppAkmSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isEasyConnectEnrolleeResponderModeSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsEasyConnectEnrolleeResponderModeSupported()
{
return IExecuteWithSignature<bool>("isEasyConnectEnrolleeResponderModeSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isEasyConnectSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsEasyConnectSupported()
{
return IExecuteWithSignature<bool>("isEasyConnectSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isEnhancedOpenSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsEnhancedOpenSupported()
{
return IExecuteWithSignature<bool>("isEnhancedOpenSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isEnhancedPowerReportingSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsEnhancedPowerReportingSupported()
{
return IExecuteWithSignature<bool>("isEnhancedPowerReportingSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isMakeBeforeBreakWifiSwitchingSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsMakeBeforeBreakWifiSwitchingSupported()
{
return IExecuteWithSignature<bool>("isMakeBeforeBreakWifiSwitchingSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isP2pSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsP2pSupported()
{
return IExecuteWithSignature<bool>("isP2pSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isPasspointTermsAndConditionsSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsPasspointTermsAndConditionsSupported()
{
return IExecuteWithSignature<bool>("isPasspointTermsAndConditionsSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isPreferredNetworkOffloadSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsPreferredNetworkOffloadSupported()
{
return IExecuteWithSignature<bool>("isPreferredNetworkOffloadSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isScanThrottleEnabled()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsScanThrottleEnabled()
{
return IExecuteWithSignature<bool>("isScanThrottleEnabled", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isStaApConcurrencySupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsStaApConcurrencySupported()
{
return IExecuteWithSignature<bool>("isStaApConcurrencySupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isStaBridgedApConcurrencySupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsStaBridgedApConcurrencySupported()
{
return IExecuteWithSignature<bool>("isStaBridgedApConcurrencySupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isStaConcurrencyForLocalOnlyConnectionsSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsStaConcurrencyForLocalOnlyConnectionsSupported()
{
return IExecuteWithSignature<bool>("isStaConcurrencyForLocalOnlyConnectionsSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isStaConcurrencyForMultiInternetSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsStaConcurrencyForMultiInternetSupported()
{
return IExecuteWithSignature<bool>("isStaConcurrencyForMultiInternetSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isTdlsSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsTdlsSupported()
{
return IExecuteWithSignature<bool>("isTdlsSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isTidToLinkMappingNegotiationSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsTidToLinkMappingNegotiationSupported()
{
return IExecuteWithSignature<bool>("isTidToLinkMappingNegotiationSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isTlsMinimumVersionSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsTlsMinimumVersionSupported()
{
return IExecuteWithSignature<bool>("isTlsMinimumVersionSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isTlsV13Supported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsTlsV13Supported()
{
return IExecuteWithSignature<bool>("isTlsV13Supported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isTrustOnFirstUseSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsTrustOnFirstUseSupported()
{
return IExecuteWithSignature<bool>("isTrustOnFirstUseSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWapiSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWapiSupported()
{
return IExecuteWithSignature<bool>("isWapiSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWifiDisplayR2Supported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWifiDisplayR2Supported()
{
return IExecuteWithSignature<bool>("isWifiDisplayR2Supported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWifiEnabled()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWifiEnabled()
{
return IExecuteWithSignature<bool>("isWifiEnabled", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWifiPasspointEnabled()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWifiPasspointEnabled()
{
return IExecuteWithSignature<bool>("isWifiPasspointEnabled", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWifiStandardSupported(int)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <returns><see cref="bool"/></returns>
public bool IsWifiStandardSupported(int arg0)
{
return IExecuteWithSignature<bool>("isWifiStandardSupported", "(I)Z", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWpa3SaeH2eSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWpa3SaeH2eSupported()
{
return IExecuteWithSignature<bool>("isWpa3SaeH2eSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWpa3SaePublicKeySupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWpa3SaePublicKeySupported()
{
return IExecuteWithSignature<bool>("isWpa3SaePublicKeySupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWpa3SaeSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWpa3SaeSupported()
{
return IExecuteWithSignature<bool>("isWpa3SaeSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isWpa3SuiteBSupported()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool IsWpa3SuiteBSupported()
{
return IExecuteWithSignature<bool>("isWpa3SuiteBSupported", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#removeNonCallerConfiguredNetworks()"/>
/// </summary>
/// <returns><see cref="bool"/></returns>
public bool RemoveNonCallerConfiguredNetworks()
{
return IExecuteWithSignature<bool>("removeNonCallerConfiguredNetworks", "()Z");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#validateSoftApConfiguration(android.net.wifi.SoftApConfiguration)"/>
/// </summary>
/// <param name="arg0"><see cref="Android.Net.Wifi.SoftApConfiguration"/></param>
/// <returns><see cref="bool"/></returns>
public bool ValidateSoftApConfiguration(Android.Net.Wifi.SoftApConfiguration arg0)
{
return IExecuteWithSignature<bool>("validateSoftApConfiguration", "(Landroid/net/wifi/SoftApConfiguration;)Z", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#addNetworkSuggestions(java.util.List)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.List"/></param>
/// <returns><see cref="int"/></returns>
public int AddNetworkSuggestions(Java.Util.List<Android.Net.Wifi.WifiNetworkSuggestion> arg0)
{
return IExecuteWithSignature<int>("addNetworkSuggestions", "(Ljava/util/List;)I", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#calculateSignalLevel(int)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <returns><see cref="int"/></returns>
public int CalculateSignalLevel(int arg0)
{
return IExecuteWithSignature<int>("calculateSignalLevel", "(I)I", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#removeNetworkSuggestions(java.util.List,int)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.List"/></param>
/// <param name="arg1"><see cref="int"/></param>
/// <returns><see cref="int"/></returns>
public int RemoveNetworkSuggestions(Java.Util.List<Android.Net.Wifi.WifiNetworkSuggestion> arg0, int arg1)
{
return IExecute<int>("removeNetworkSuggestions", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#removeNetworkSuggestions(java.util.List)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.List"/></param>
/// <returns><see cref="int"/></returns>
public int RemoveNetworkSuggestions(Java.Util.List<Android.Net.Wifi.WifiNetworkSuggestion> arg0)
{
return IExecuteWithSignature<int>("removeNetworkSuggestions", "(Ljava/util/List;)I", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getAllowedChannels(int,int)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <param name="arg1"><see cref="int"/></param>
/// <returns><see cref="Java.Util.List"/></returns>
public Java.Util.List<Android.Net.Wifi.WifiAvailableChannel> GetAllowedChannels(int arg0, int arg1)
{
return IExecute<Java.Util.List<Android.Net.Wifi.WifiAvailableChannel>>("getAllowedChannels", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getUsableChannels(int,int)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <param name="arg1"><see cref="int"/></param>
/// <returns><see cref="Java.Util.List"/></returns>
public Java.Util.List<Android.Net.Wifi.WifiAvailableChannel> GetUsableChannels(int arg0, int arg1)
{
return IExecute<Java.Util.List<Android.Net.Wifi.WifiAvailableChannel>>("getUsableChannels", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#addLocalOnlyConnectionFailureListener(java.util.concurrent.Executor,android.net.wifi.WifiManager.LocalOnlyConnectionFailureListener)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Android.Net.Wifi.WifiManager.LocalOnlyConnectionFailureListener"/></param>
public void AddLocalOnlyConnectionFailureListener(Java.Util.Concurrent.Executor arg0, Android.Net.Wifi.WifiManager.LocalOnlyConnectionFailureListener arg1)
{
IExecute("addLocalOnlyConnectionFailureListener", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#addOrUpdatePasspointConfiguration(android.net.wifi.hotspot2.PasspointConfiguration)"/>
/// </summary>
/// <param name="arg0"><see cref="Android.Net.Wifi.Hotspot2.PasspointConfiguration"/></param>
public void AddOrUpdatePasspointConfiguration(Android.Net.Wifi.Hotspot2.PasspointConfiguration arg0)
{
IExecuteWithSignature("addOrUpdatePasspointConfiguration", "(Landroid/net/wifi/hotspot2/PasspointConfiguration;)V", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#addSuggestionConnectionStatusListener(java.util.concurrent.Executor,android.net.wifi.WifiManager.SuggestionConnectionStatusListener)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Android.Net.Wifi.WifiManager.SuggestionConnectionStatusListener"/></param>
public void AddSuggestionConnectionStatusListener(Java.Util.Concurrent.Executor arg0, Android.Net.Wifi.WifiManager.SuggestionConnectionStatusListener arg1)
{
IExecute("addSuggestionConnectionStatusListener", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#addSuggestionUserApprovalStatusListener(java.util.concurrent.Executor,android.net.wifi.WifiManager.SuggestionUserApprovalStatusListener)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Android.Net.Wifi.WifiManager.SuggestionUserApprovalStatusListener"/></param>
public void AddSuggestionUserApprovalStatusListener(Java.Util.Concurrent.Executor arg0, Android.Net.Wifi.WifiManager.SuggestionUserApprovalStatusListener arg1)
{
IExecute("addSuggestionUserApprovalStatusListener", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#allowAutojoinGlobal(boolean)"/>
/// </summary>
/// <param name="arg0"><see cref="bool"/></param>
public void AllowAutojoinGlobal(bool arg0)
{
IExecuteWithSignature("allowAutojoinGlobal", "(Z)V", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#flushPasspointAnqpCache()"/>
/// </summary>
public void FlushPasspointAnqpCache()
{
IExecuteWithSignature("flushPasspointAnqpCache", "()V");
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getChannelData(java.util.concurrent.Executor,java.util.function.Consumer)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Java.Util.Function.Consumer"/></param>
public void GetChannelData(Java.Util.Concurrent.Executor arg0, Java.Util.Function.Consumer<Java.Util.List<Android.Os.Bundle>> arg1)
{
IExecute("getChannelData", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getMaxSupportedConcurrentTdlsSessions(java.util.concurrent.Executor,java.util.function.Consumer)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Java.Util.Function.Consumer"/></param>
public void GetMaxSupportedConcurrentTdlsSessions(Java.Util.Concurrent.Executor arg0, Java.Util.Function.Consumer<Java.Lang.Integer> arg1)
{
IExecute("getMaxSupportedConcurrentTdlsSessions", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#getNumberOfEnabledTdlsSessions(java.util.concurrent.Executor,java.util.function.Consumer)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Java.Util.Function.Consumer"/></param>
public void GetNumberOfEnabledTdlsSessions(Java.Util.Concurrent.Executor arg0, Java.Util.Function.Consumer<Java.Lang.Integer> arg1)
{
IExecute("getNumberOfEnabledTdlsSessions", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#isTdlsOperationCurrentlyAvailable(java.util.concurrent.Executor,java.util.function.Consumer)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Java.Util.Function.Consumer"/></param>
public void IsTdlsOperationCurrentlyAvailable(Java.Util.Concurrent.Executor arg0, Java.Util.Function.Consumer<Java.Lang.Boolean> arg1)
{
IExecute("isTdlsOperationCurrentlyAvailable", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#queryAutojoinGlobal(java.util.concurrent.Executor,java.util.function.Consumer)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Java.Util.Function.Consumer"/></param>
public void QueryAutojoinGlobal(Java.Util.Concurrent.Executor arg0, Java.Util.Function.Consumer<Java.Lang.Boolean> arg1)
{
IExecute("queryAutojoinGlobal", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#registerScanResultsCallback(java.util.concurrent.Executor,android.net.wifi.WifiManager.ScanResultsCallback)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Android.Net.Wifi.WifiManager.ScanResultsCallback"/></param>
public void RegisterScanResultsCallback(Java.Util.Concurrent.Executor arg0, Android.Net.Wifi.WifiManager.ScanResultsCallback arg1)
{
IExecute("registerScanResultsCallback", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#registerSubsystemRestartTrackingCallback(java.util.concurrent.Executor,android.net.wifi.WifiManager.SubsystemRestartTrackingCallback)"/>
/// </summary>
/// <param name="arg0"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg1"><see cref="Android.Net.Wifi.WifiManager.SubsystemRestartTrackingCallback"/></param>
public void RegisterSubsystemRestartTrackingCallback(Java.Util.Concurrent.Executor arg0, Android.Net.Wifi.WifiManager.SubsystemRestartTrackingCallback arg1)
{
IExecute("registerSubsystemRestartTrackingCallback", arg0, arg1);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#removeLocalOnlyConnectionFailureListener(android.net.wifi.WifiManager.LocalOnlyConnectionFailureListener)"/>
/// </summary>
/// <param name="arg0"><see cref="Android.Net.Wifi.WifiManager.LocalOnlyConnectionFailureListener"/></param>
public void RemoveLocalOnlyConnectionFailureListener(Android.Net.Wifi.WifiManager.LocalOnlyConnectionFailureListener arg0)
{
IExecuteWithSignature("removeLocalOnlyConnectionFailureListener", "(Landroid/net/wifi/WifiManager$LocalOnlyConnectionFailureListener;)V", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#removeSuggestionConnectionStatusListener(android.net.wifi.WifiManager.SuggestionConnectionStatusListener)"/>
/// </summary>
/// <param name="arg0"><see cref="Android.Net.Wifi.WifiManager.SuggestionConnectionStatusListener"/></param>
public void RemoveSuggestionConnectionStatusListener(Android.Net.Wifi.WifiManager.SuggestionConnectionStatusListener arg0)
{
IExecuteWithSignature("removeSuggestionConnectionStatusListener", "(Landroid/net/wifi/WifiManager$SuggestionConnectionStatusListener;)V", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#removeSuggestionUserApprovalStatusListener(android.net.wifi.WifiManager.SuggestionUserApprovalStatusListener)"/>
/// </summary>
/// <param name="arg0"><see cref="Android.Net.Wifi.WifiManager.SuggestionUserApprovalStatusListener"/></param>
public void RemoveSuggestionUserApprovalStatusListener(Android.Net.Wifi.WifiManager.SuggestionUserApprovalStatusListener arg0)
{
IExecuteWithSignature("removeSuggestionUserApprovalStatusListener", "(Landroid/net/wifi/WifiManager$SuggestionUserApprovalStatusListener;)V", arg0);
}
/// <summary>
/// <see href="https://developer.android.com/reference/android/net/wifi/WifiManager.html#reportCreateInterfaceImpact(int,boolean,java.util.concurrent.Executor,java.util.function.BiConsumer)"/>
/// </summary>
/// <param name="arg0"><see cref="int"/></param>
/// <param name="arg1"><see cref="bool"/></param>
/// <param name="arg2"><see cref="Java.Util.Concurrent.Executor"/></param>
/// <param name="arg3"><see cref="Java.Util.Function.BiConsumer"/></param>
public void ReportCreateInterfaceImpact(int arg0, bool arg1, Java.Util.Concurrent.Executor arg2, Java.Util.Function.BiConsumer<Java.Lang.Boolean, Java.Util.Set<Android.Net.Wifi.WifiManager.InterfaceCreationImpact>> arg3)
{
IExecute("reportCreateInterfaceImpact", arg0, arg1, arg2, arg3);