-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxrefmap.yml
2047 lines (2047 loc) · 92.6 KB
/
xrefmap.yml
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
### YamlMime:XRefMap
sorted: true
references:
- uid: SpotLib
name: SpotLib
href: api/SpotLib.html
commentId: N:SpotLib
fullName: SpotLib
nameWithType: SpotLib
- uid: SpotLib.Antenna
name: Antenna
href: api/SpotLib.Antenna.html
commentId: T:SpotLib.Antenna
fullName: SpotLib.Antenna
nameWithType: Antenna
- uid: SpotLib.Antenna.#ctor(System.UInt32,SpotLib.AntennaType)
name: Antenna(UInt32, AntennaType)
href: api/SpotLib.Antenna.html#SpotLib_Antenna__ctor_System_UInt32_SpotLib_AntennaType_
commentId: M:SpotLib.Antenna.#ctor(System.UInt32,SpotLib.AntennaType)
fullName: SpotLib.Antenna.Antenna(System.UInt32, SpotLib.AntennaType)
nameWithType: Antenna.Antenna(UInt32, AntennaType)
- uid: SpotLib.Antenna.#ctor*
name: Antenna
href: api/SpotLib.Antenna.html#SpotLib_Antenna__ctor_
commentId: Overload:SpotLib.Antenna.#ctor
isSpec: "True"
fullName: SpotLib.Antenna.Antenna
nameWithType: Antenna.Antenna
- uid: SpotLib.Antenna.IsConnected
name: IsConnected
href: api/SpotLib.Antenna.html#SpotLib_Antenna_IsConnected
commentId: P:SpotLib.Antenna.IsConnected
fullName: SpotLib.Antenna.IsConnected
nameWithType: Antenna.IsConnected
- uid: SpotLib.Antenna.IsConnected*
name: IsConnected
href: api/SpotLib.Antenna.html#SpotLib_Antenna_IsConnected_
commentId: Overload:SpotLib.Antenna.IsConnected
isSpec: "True"
fullName: SpotLib.Antenna.IsConnected
nameWithType: Antenna.IsConnected
- uid: SpotLib.Antenna.IsEnabled
name: IsEnabled
href: api/SpotLib.Antenna.html#SpotLib_Antenna_IsEnabled
commentId: P:SpotLib.Antenna.IsEnabled
fullName: SpotLib.Antenna.IsEnabled
nameWithType: Antenna.IsEnabled
- uid: SpotLib.Antenna.IsEnabled*
name: IsEnabled
href: api/SpotLib.Antenna.html#SpotLib_Antenna_IsEnabled_
commentId: Overload:SpotLib.Antenna.IsEnabled
isSpec: "True"
fullName: SpotLib.Antenna.IsEnabled
nameWithType: Antenna.IsEnabled
- uid: SpotLib.Antenna.Number
name: Number
href: api/SpotLib.Antenna.html#SpotLib_Antenna_Number
commentId: P:SpotLib.Antenna.Number
fullName: SpotLib.Antenna.Number
nameWithType: Antenna.Number
- uid: SpotLib.Antenna.Number*
name: Number
href: api/SpotLib.Antenna.html#SpotLib_Antenna_Number_
commentId: Overload:SpotLib.Antenna.Number
isSpec: "True"
fullName: SpotLib.Antenna.Number
nameWithType: Antenna.Number
- uid: SpotLib.Antenna.Type
name: Type
href: api/SpotLib.Antenna.html#SpotLib_Antenna_Type
commentId: P:SpotLib.Antenna.Type
fullName: SpotLib.Antenna.Type
nameWithType: Antenna.Type
- uid: SpotLib.Antenna.Type*
name: Type
href: api/SpotLib.Antenna.html#SpotLib_Antenna_Type_
commentId: Overload:SpotLib.Antenna.Type
isSpec: "True"
fullName: SpotLib.Antenna.Type
nameWithType: Antenna.Type
- uid: SpotLib.AntennaType
name: AntennaType
href: api/SpotLib.AntennaType.html
commentId: T:SpotLib.AntennaType
fullName: SpotLib.AntennaType
nameWithType: AntennaType
- uid: SpotLib.AntennaType.Bluetooth
name: Bluetooth
href: api/SpotLib.AntennaType.html#SpotLib_AntennaType_Bluetooth
commentId: F:SpotLib.AntennaType.Bluetooth
fullName: SpotLib.AntennaType.Bluetooth
nameWithType: AntennaType.Bluetooth
- uid: SpotLib.AntennaType.RFID
name: RFID
href: api/SpotLib.AntennaType.html#SpotLib_AntennaType_RFID
commentId: F:SpotLib.AntennaType.RFID
fullName: SpotLib.AntennaType.RFID
nameWithType: AntennaType.RFID
- uid: SpotLib.API
name: API
href: api/SpotLib.API.html
commentId: T:SpotLib.API
fullName: SpotLib.API
nameWithType: API
- uid: SpotLib.API.#ctor(System.Int32)
name: API(Int32)
href: api/SpotLib.API.html#SpotLib_API__ctor_System_Int32_
commentId: M:SpotLib.API.#ctor(System.Int32)
fullName: SpotLib.API.API(System.Int32)
nameWithType: API.API(Int32)
- uid: SpotLib.API.#ctor(System.String,System.Int32)
name: API(String, Int32)
href: api/SpotLib.API.html#SpotLib_API__ctor_System_String_System_Int32_
commentId: M:SpotLib.API.#ctor(System.String,System.Int32)
fullName: SpotLib.API.API(System.String, System.Int32)
nameWithType: API.API(String, Int32)
- uid: SpotLib.API.#ctor*
name: API
href: api/SpotLib.API.html#SpotLib_API__ctor_
commentId: Overload:SpotLib.API.#ctor
isSpec: "True"
fullName: SpotLib.API.API
nameWithType: API.API
- uid: SpotLib.API.ChangeIpSettings(System.Int32,System.Boolean,System.String,System.String,System.String,System.String,System.String)
name: ChangeIpSettings(Int32, Boolean, String, String, String, String, String)
href: api/SpotLib.API.html#SpotLib_API_ChangeIpSettings_System_Int32_System_Boolean_System_String_System_String_System_String_System_String_System_String_
commentId: M:SpotLib.API.ChangeIpSettings(System.Int32,System.Boolean,System.String,System.String,System.String,System.String,System.String)
fullName: SpotLib.API.ChangeIpSettings(System.Int32, System.Boolean, System.String, System.String, System.String, System.String, System.String)
nameWithType: API.ChangeIpSettings(Int32, Boolean, String, String, String, String, String)
- uid: SpotLib.API.ChangeIpSettings*
name: ChangeIpSettings
href: api/SpotLib.API.html#SpotLib_API_ChangeIpSettings_
commentId: Overload:SpotLib.API.ChangeIpSettings
isSpec: "True"
fullName: SpotLib.API.ChangeIpSettings
nameWithType: API.ChangeIpSettings
- uid: SpotLib.API.ClearPresences(System.Int32)
name: ClearPresences(Int32)
href: api/SpotLib.API.html#SpotLib_API_ClearPresences_System_Int32_
commentId: M:SpotLib.API.ClearPresences(System.Int32)
fullName: SpotLib.API.ClearPresences(System.Int32)
nameWithType: API.ClearPresences(Int32)
- uid: SpotLib.API.ClearPresences*
name: ClearPresences
href: api/SpotLib.API.html#SpotLib_API_ClearPresences_
commentId: Overload:SpotLib.API.ClearPresences
isSpec: "True"
fullName: SpotLib.API.ClearPresences
nameWithType: API.ClearPresences
- uid: SpotLib.API.DeInit
name: DeInit()
href: api/SpotLib.API.html#SpotLib_API_DeInit
commentId: M:SpotLib.API.DeInit
fullName: SpotLib.API.DeInit()
nameWithType: API.DeInit()
- uid: SpotLib.API.DeInit*
name: DeInit
href: api/SpotLib.API.html#SpotLib_API_DeInit_
commentId: Overload:SpotLib.API.DeInit
isSpec: "True"
fullName: SpotLib.API.DeInit
nameWithType: API.DeInit
- uid: SpotLib.API.Finalize
name: Finalize()
href: api/SpotLib.API.html#SpotLib_API_Finalize
commentId: M:SpotLib.API.Finalize
fullName: SpotLib.API.Finalize()
nameWithType: API.Finalize()
- uid: SpotLib.API.Finalize*
name: Finalize
href: api/SpotLib.API.html#SpotLib_API_Finalize_
commentId: Overload:SpotLib.API.Finalize
isSpec: "True"
fullName: SpotLib.API.Finalize
nameWithType: API.Finalize
- uid: SpotLib.API.GetAntennaMaxSWR(System.Int32,System.UInt32@)
name: GetAntennaMaxSWR(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetAntennaMaxSWR_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetAntennaMaxSWR(System.Int32,System.UInt32@)
name.vb: GetAntennaMaxSWR(Int32, ByRef UInt32)
fullName: SpotLib.API.GetAntennaMaxSWR(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetAntennaMaxSWR(System.Int32, ByRef System.UInt32)
nameWithType: API.GetAntennaMaxSWR(Int32, out UInt32)
nameWithType.vb: API.GetAntennaMaxSWR(Int32, ByRef UInt32)
- uid: SpotLib.API.GetAntennaMaxSWR*
name: GetAntennaMaxSWR
href: api/SpotLib.API.html#SpotLib_API_GetAntennaMaxSWR_
commentId: Overload:SpotLib.API.GetAntennaMaxSWR
isSpec: "True"
fullName: SpotLib.API.GetAntennaMaxSWR
nameWithType: API.GetAntennaMaxSWR
- uid: SpotLib.API.GetAntennaPresencesEnabledState(System.Int32,System.Boolean@)
name: GetAntennaPresencesEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetAntennaPresencesEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetAntennaPresencesEnabledState(System.Int32,System.Boolean@)
name.vb: GetAntennaPresencesEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetAntennaPresencesEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetAntennaPresencesEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetAntennaPresencesEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetAntennaPresencesEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetAntennaPresencesEnabledState*
name: GetAntennaPresencesEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetAntennaPresencesEnabledState_
commentId: Overload:SpotLib.API.GetAntennaPresencesEnabledState
isSpec: "True"
fullName: SpotLib.API.GetAntennaPresencesEnabledState
nameWithType: API.GetAntennaPresencesEnabledState
- uid: SpotLib.API.GetBluetoothEnabledState(System.Int32,System.Boolean@)
name: GetBluetoothEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetBluetoothEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetBluetoothEnabledState(System.Int32,System.Boolean@)
name.vb: GetBluetoothEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetBluetoothEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetBluetoothEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetBluetoothEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetBluetoothEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetBluetoothEnabledState*
name: GetBluetoothEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetBluetoothEnabledState_
commentId: Overload:SpotLib.API.GetBluetoothEnabledState
isSpec: "True"
fullName: SpotLib.API.GetBluetoothEnabledState
nameWithType: API.GetBluetoothEnabledState
- uid: SpotLib.API.GetBluetoothFilterThreshold(System.Int32,System.Int32@)
name: GetBluetoothFilterThreshold(Int32, out Int32)
href: api/SpotLib.API.html#SpotLib_API_GetBluetoothFilterThreshold_System_Int32_System_Int32__
commentId: M:SpotLib.API.GetBluetoothFilterThreshold(System.Int32,System.Int32@)
name.vb: GetBluetoothFilterThreshold(Int32, ByRef Int32)
fullName: SpotLib.API.GetBluetoothFilterThreshold(System.Int32, out System.Int32)
fullName.vb: SpotLib.API.GetBluetoothFilterThreshold(System.Int32, ByRef System.Int32)
nameWithType: API.GetBluetoothFilterThreshold(Int32, out Int32)
nameWithType.vb: API.GetBluetoothFilterThreshold(Int32, ByRef Int32)
- uid: SpotLib.API.GetBluetoothFilterThreshold*
name: GetBluetoothFilterThreshold
href: api/SpotLib.API.html#SpotLib_API_GetBluetoothFilterThreshold_
commentId: Overload:SpotLib.API.GetBluetoothFilterThreshold
isSpec: "True"
fullName: SpotLib.API.GetBluetoothFilterThreshold
nameWithType: API.GetBluetoothFilterThreshold
- uid: SpotLib.API.GetDHCPEnabledState(System.Int32,System.Boolean@)
name: GetDHCPEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetDHCPEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetDHCPEnabledState(System.Int32,System.Boolean@)
name.vb: GetDHCPEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetDHCPEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetDHCPEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetDHCPEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetDHCPEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetDHCPEnabledState*
name: GetDHCPEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetDHCPEnabledState_
commentId: Overload:SpotLib.API.GetDHCPEnabledState
isSpec: "True"
fullName: SpotLib.API.GetDHCPEnabledState
nameWithType: API.GetDHCPEnabledState
- uid: SpotLib.API.GetFilterHysteresis(System.Int32,SpotLib.TechnologyType,System.UInt32@)
name: GetFilterHysteresis(Int32, TechnologyType, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetFilterHysteresis_System_Int32_SpotLib_TechnologyType_System_UInt32__
commentId: M:SpotLib.API.GetFilterHysteresis(System.Int32,SpotLib.TechnologyType,System.UInt32@)
name.vb: GetFilterHysteresis(Int32, TechnologyType, ByRef UInt32)
fullName: SpotLib.API.GetFilterHysteresis(System.Int32, SpotLib.TechnologyType, out System.UInt32)
fullName.vb: SpotLib.API.GetFilterHysteresis(System.Int32, SpotLib.TechnologyType, ByRef System.UInt32)
nameWithType: API.GetFilterHysteresis(Int32, TechnologyType, out UInt32)
nameWithType.vb: API.GetFilterHysteresis(Int32, TechnologyType, ByRef UInt32)
- uid: SpotLib.API.GetFilterHysteresis*
name: GetFilterHysteresis
href: api/SpotLib.API.html#SpotLib_API_GetFilterHysteresis_
commentId: Overload:SpotLib.API.GetFilterHysteresis
isSpec: "True"
fullName: SpotLib.API.GetFilterHysteresis
nameWithType: API.GetFilterHysteresis
- uid: SpotLib.API.GetFilterWindowSize(System.Int32,SpotLib.TechnologyType,System.UInt32@)
name: GetFilterWindowSize(Int32, TechnologyType, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetFilterWindowSize_System_Int32_SpotLib_TechnologyType_System_UInt32__
commentId: M:SpotLib.API.GetFilterWindowSize(System.Int32,SpotLib.TechnologyType,System.UInt32@)
name.vb: GetFilterWindowSize(Int32, TechnologyType, ByRef UInt32)
fullName: SpotLib.API.GetFilterWindowSize(System.Int32, SpotLib.TechnologyType, out System.UInt32)
fullName.vb: SpotLib.API.GetFilterWindowSize(System.Int32, SpotLib.TechnologyType, ByRef System.UInt32)
nameWithType: API.GetFilterWindowSize(Int32, TechnologyType, out UInt32)
nameWithType.vb: API.GetFilterWindowSize(Int32, TechnologyType, ByRef UInt32)
- uid: SpotLib.API.GetFilterWindowSize*
name: GetFilterWindowSize
href: api/SpotLib.API.html#SpotLib_API_GetFilterWindowSize_
commentId: Overload:SpotLib.API.GetFilterWindowSize
isSpec: "True"
fullName: SpotLib.API.GetFilterWindowSize
nameWithType: API.GetFilterWindowSize
- uid: SpotLib.API.GetFirmwareUpdateEnabledState(System.Int32,System.Boolean@,System.UInt32@)
name: GetFirmwareUpdateEnabledState(Int32, out Boolean, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetFirmwareUpdateEnabledState_System_Int32_System_Boolean__System_UInt32__
commentId: M:SpotLib.API.GetFirmwareUpdateEnabledState(System.Int32,System.Boolean@,System.UInt32@)
name.vb: GetFirmwareUpdateEnabledState(Int32, ByRef Boolean, ByRef UInt32)
fullName: SpotLib.API.GetFirmwareUpdateEnabledState(System.Int32, out System.Boolean, out System.UInt32)
fullName.vb: SpotLib.API.GetFirmwareUpdateEnabledState(System.Int32, ByRef System.Boolean, ByRef System.UInt32)
nameWithType: API.GetFirmwareUpdateEnabledState(Int32, out Boolean, out UInt32)
nameWithType.vb: API.GetFirmwareUpdateEnabledState(Int32, ByRef Boolean, ByRef UInt32)
- uid: SpotLib.API.GetFirmwareUpdateEnabledState*
name: GetFirmwareUpdateEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetFirmwareUpdateEnabledState_
commentId: Overload:SpotLib.API.GetFirmwareUpdateEnabledState
isSpec: "True"
fullName: SpotLib.API.GetFirmwareUpdateEnabledState
nameWithType: API.GetFirmwareUpdateEnabledState
- uid: SpotLib.API.GetFirmwareVersion(System.Int32,System.String@)
name: GetFirmwareVersion(Int32, out String)
href: api/SpotLib.API.html#SpotLib_API_GetFirmwareVersion_System_Int32_System_String__
commentId: M:SpotLib.API.GetFirmwareVersion(System.Int32,System.String@)
name.vb: GetFirmwareVersion(Int32, ByRef String)
fullName: SpotLib.API.GetFirmwareVersion(System.Int32, out System.String)
fullName.vb: SpotLib.API.GetFirmwareVersion(System.Int32, ByRef System.String)
nameWithType: API.GetFirmwareVersion(Int32, out String)
nameWithType.vb: API.GetFirmwareVersion(Int32, ByRef String)
- uid: SpotLib.API.GetFirmwareVersion*
name: GetFirmwareVersion
href: api/SpotLib.API.html#SpotLib_API_GetFirmwareVersion_
commentId: Overload:SpotLib.API.GetFirmwareVersion
isSpec: "True"
fullName: SpotLib.API.GetFirmwareVersion
nameWithType: API.GetFirmwareVersion
- uid: SpotLib.API.GetGateway(System.Int32,System.String@)
name: GetGateway(Int32, out String)
href: api/SpotLib.API.html#SpotLib_API_GetGateway_System_Int32_System_String__
commentId: M:SpotLib.API.GetGateway(System.Int32,System.String@)
name.vb: GetGateway(Int32, ByRef String)
fullName: SpotLib.API.GetGateway(System.Int32, out System.String)
fullName.vb: SpotLib.API.GetGateway(System.Int32, ByRef System.String)
nameWithType: API.GetGateway(Int32, out String)
nameWithType.vb: API.GetGateway(Int32, ByRef String)
- uid: SpotLib.API.GetGateway*
name: GetGateway
href: api/SpotLib.API.html#SpotLib_API_GetGateway_
commentId: Overload:SpotLib.API.GetGateway
isSpec: "True"
fullName: SpotLib.API.GetGateway
nameWithType: API.GetGateway
- uid: SpotLib.API.GetHoldTime(System.Int32,System.UInt32@,System.Boolean@)
name: GetHoldTime(Int32, out UInt32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetHoldTime_System_Int32_System_UInt32__System_Boolean__
commentId: M:SpotLib.API.GetHoldTime(System.Int32,System.UInt32@,System.Boolean@)
name.vb: GetHoldTime(Int32, ByRef UInt32, ByRef Boolean)
fullName: SpotLib.API.GetHoldTime(System.Int32, out System.UInt32, out System.Boolean)
fullName.vb: SpotLib.API.GetHoldTime(System.Int32, ByRef System.UInt32, ByRef System.Boolean)
nameWithType: API.GetHoldTime(Int32, out UInt32, out Boolean)
nameWithType.vb: API.GetHoldTime(Int32, ByRef UInt32, ByRef Boolean)
- uid: SpotLib.API.GetHoldTime*
name: GetHoldTime
href: api/SpotLib.API.html#SpotLib_API_GetHoldTime_
commentId: Overload:SpotLib.API.GetHoldTime
isSpec: "True"
fullName: SpotLib.API.GetHoldTime
nameWithType: API.GetHoldTime
- uid: SpotLib.API.GetIpAddress(System.Int32,System.String@)
name: GetIpAddress(Int32, out String)
href: api/SpotLib.API.html#SpotLib_API_GetIpAddress_System_Int32_System_String__
commentId: M:SpotLib.API.GetIpAddress(System.Int32,System.String@)
name.vb: GetIpAddress(Int32, ByRef String)
fullName: SpotLib.API.GetIpAddress(System.Int32, out System.String)
fullName.vb: SpotLib.API.GetIpAddress(System.Int32, ByRef System.String)
nameWithType: API.GetIpAddress(Int32, out String)
nameWithType.vb: API.GetIpAddress(Int32, ByRef String)
- uid: SpotLib.API.GetIpAddress*
name: GetIpAddress
href: api/SpotLib.API.html#SpotLib_API_GetIpAddress_
commentId: Overload:SpotLib.API.GetIpAddress
isSpec: "True"
fullName: SpotLib.API.GetIpAddress
nameWithType: API.GetIpAddress
- uid: SpotLib.API.GetIpSubnet(System.Int32,System.String@)
name: GetIpSubnet(Int32, out String)
href: api/SpotLib.API.html#SpotLib_API_GetIpSubnet_System_Int32_System_String__
commentId: M:SpotLib.API.GetIpSubnet(System.Int32,System.String@)
name.vb: GetIpSubnet(Int32, ByRef String)
fullName: SpotLib.API.GetIpSubnet(System.Int32, out System.String)
fullName.vb: SpotLib.API.GetIpSubnet(System.Int32, ByRef System.String)
nameWithType: API.GetIpSubnet(Int32, out String)
nameWithType.vb: API.GetIpSubnet(Int32, ByRef String)
- uid: SpotLib.API.GetIpSubnet*
name: GetIpSubnet
href: api/SpotLib.API.html#SpotLib_API_GetIpSubnet_
commentId: Overload:SpotLib.API.GetIpSubnet
isSpec: "True"
fullName: SpotLib.API.GetIpSubnet
nameWithType: API.GetIpSubnet
- uid: SpotLib.API.GetPresences(System.Int32,System.Collections.Generic.Dictionary{System.Int32,SpotLib.Presence}@)
name: GetPresences(Int32, out Dictionary<Int32, Presence>)
href: api/SpotLib.API.html#SpotLib_API_GetPresences_System_Int32_System_Collections_Generic_Dictionary_System_Int32_SpotLib_Presence___
commentId: M:SpotLib.API.GetPresences(System.Int32,System.Collections.Generic.Dictionary{System.Int32,SpotLib.Presence}@)
name.vb: GetPresences(Int32, ByRef Dictionary(Of Int32, Presence))
fullName: SpotLib.API.GetPresences(System.Int32, out System.Collections.Generic.Dictionary<System.Int32, SpotLib.Presence>)
fullName.vb: SpotLib.API.GetPresences(System.Int32, ByRef System.Collections.Generic.Dictionary(Of System.Int32, SpotLib.Presence))
nameWithType: API.GetPresences(Int32, out Dictionary<Int32, Presence>)
nameWithType.vb: API.GetPresences(Int32, ByRef Dictionary(Of Int32, Presence))
- uid: SpotLib.API.GetPresences*
name: GetPresences
href: api/SpotLib.API.html#SpotLib_API_GetPresences_
commentId: Overload:SpotLib.API.GetPresences
isSpec: "True"
fullName: SpotLib.API.GetPresences
nameWithType: API.GetPresences
- uid: SpotLib.API.GetPrimaryDNS(System.Int32,System.String@)
name: GetPrimaryDNS(Int32, out String)
href: api/SpotLib.API.html#SpotLib_API_GetPrimaryDNS_System_Int32_System_String__
commentId: M:SpotLib.API.GetPrimaryDNS(System.Int32,System.String@)
name.vb: GetPrimaryDNS(Int32, ByRef String)
fullName: SpotLib.API.GetPrimaryDNS(System.Int32, out System.String)
fullName.vb: SpotLib.API.GetPrimaryDNS(System.Int32, ByRef System.String)
nameWithType: API.GetPrimaryDNS(Int32, out String)
nameWithType.vb: API.GetPrimaryDNS(Int32, ByRef String)
- uid: SpotLib.API.GetPrimaryDNS*
name: GetPrimaryDNS
href: api/SpotLib.API.html#SpotLib_API_GetPrimaryDNS_
commentId: Overload:SpotLib.API.GetPrimaryDNS
isSpec: "True"
fullName: SpotLib.API.GetPrimaryDNS
nameWithType: API.GetPrimaryDNS
- uid: SpotLib.API.GetProximityLevel(System.Int32,SpotLib.TechnologyType,SpotLib.ProximityType,System.Int32@)
name: GetProximityLevel(Int32, TechnologyType, ProximityType, out Int32)
href: api/SpotLib.API.html#SpotLib_API_GetProximityLevel_System_Int32_SpotLib_TechnologyType_SpotLib_ProximityType_System_Int32__
commentId: M:SpotLib.API.GetProximityLevel(System.Int32,SpotLib.TechnologyType,SpotLib.ProximityType,System.Int32@)
name.vb: GetProximityLevel(Int32, TechnologyType, ProximityType, ByRef Int32)
fullName: SpotLib.API.GetProximityLevel(System.Int32, SpotLib.TechnologyType, SpotLib.ProximityType, out System.Int32)
fullName.vb: SpotLib.API.GetProximityLevel(System.Int32, SpotLib.TechnologyType, SpotLib.ProximityType, ByRef System.Int32)
nameWithType: API.GetProximityLevel(Int32, TechnologyType, ProximityType, out Int32)
nameWithType.vb: API.GetProximityLevel(Int32, TechnologyType, ProximityType, ByRef Int32)
- uid: SpotLib.API.GetProximityLevel*
name: GetProximityLevel
href: api/SpotLib.API.html#SpotLib_API_GetProximityLevel_
commentId: Overload:SpotLib.API.GetProximityLevel
isSpec: "True"
fullName: SpotLib.API.GetProximityLevel
nameWithType: API.GetProximityLevel
- uid: SpotLib.API.GetRawHitEventsEnabledState(System.Int32,System.Boolean@)
name: GetRawHitEventsEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetRawHitEventsEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetRawHitEventsEnabledState(System.Int32,System.Boolean@)
name.vb: GetRawHitEventsEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetRawHitEventsEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetRawHitEventsEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetRawHitEventsEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetRawHitEventsEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetRawHitEventsEnabledState*
name: GetRawHitEventsEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetRawHitEventsEnabledState_
commentId: Overload:SpotLib.API.GetRawHitEventsEnabledState
isSpec: "True"
fullName: SpotLib.API.GetRawHitEventsEnabledState
nameWithType: API.GetRawHitEventsEnabledState
- uid: SpotLib.API.GetRfidAntennaConnectedState(System.Int32,System.UInt32,System.Boolean@)
name: GetRfidAntennaConnectedState(Int32, UInt32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaConnectedState_System_Int32_System_UInt32_System_Boolean__
commentId: M:SpotLib.API.GetRfidAntennaConnectedState(System.Int32,System.UInt32,System.Boolean@)
name.vb: GetRfidAntennaConnectedState(Int32, UInt32, ByRef Boolean)
fullName: SpotLib.API.GetRfidAntennaConnectedState(System.Int32, System.UInt32, out System.Boolean)
fullName.vb: SpotLib.API.GetRfidAntennaConnectedState(System.Int32, System.UInt32, ByRef System.Boolean)
nameWithType: API.GetRfidAntennaConnectedState(Int32, UInt32, out Boolean)
nameWithType.vb: API.GetRfidAntennaConnectedState(Int32, UInt32, ByRef Boolean)
- uid: SpotLib.API.GetRfidAntennaConnectedState*
name: GetRfidAntennaConnectedState
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaConnectedState_
commentId: Overload:SpotLib.API.GetRfidAntennaConnectedState
isSpec: "True"
fullName: SpotLib.API.GetRfidAntennaConnectedState
nameWithType: API.GetRfidAntennaConnectedState
- uid: SpotLib.API.GetRfidAntennaDisableMask(System.Int32,System.UInt32@)
name: GetRfidAntennaDisableMask(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaDisableMask_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetRfidAntennaDisableMask(System.Int32,System.UInt32@)
name.vb: GetRfidAntennaDisableMask(Int32, ByRef UInt32)
fullName: SpotLib.API.GetRfidAntennaDisableMask(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetRfidAntennaDisableMask(System.Int32, ByRef System.UInt32)
nameWithType: API.GetRfidAntennaDisableMask(Int32, out UInt32)
nameWithType.vb: API.GetRfidAntennaDisableMask(Int32, ByRef UInt32)
- uid: SpotLib.API.GetRfidAntennaDisableMask*
name: GetRfidAntennaDisableMask
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaDisableMask_
commentId: Overload:SpotLib.API.GetRfidAntennaDisableMask
isSpec: "True"
fullName: SpotLib.API.GetRfidAntennaDisableMask
nameWithType: API.GetRfidAntennaDisableMask
- uid: SpotLib.API.GetRfidAntennaEnabledState(System.Int32,System.UInt32,System.Boolean@)
name: GetRfidAntennaEnabledState(Int32, UInt32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaEnabledState_System_Int32_System_UInt32_System_Boolean__
commentId: M:SpotLib.API.GetRfidAntennaEnabledState(System.Int32,System.UInt32,System.Boolean@)
name.vb: GetRfidAntennaEnabledState(Int32, UInt32, ByRef Boolean)
fullName: SpotLib.API.GetRfidAntennaEnabledState(System.Int32, System.UInt32, out System.Boolean)
fullName.vb: SpotLib.API.GetRfidAntennaEnabledState(System.Int32, System.UInt32, ByRef System.Boolean)
nameWithType: API.GetRfidAntennaEnabledState(Int32, UInt32, out Boolean)
nameWithType.vb: API.GetRfidAntennaEnabledState(Int32, UInt32, ByRef Boolean)
- uid: SpotLib.API.GetRfidAntennaEnabledState*
name: GetRfidAntennaEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaEnabledState_
commentId: Overload:SpotLib.API.GetRfidAntennaEnabledState
isSpec: "True"
fullName: SpotLib.API.GetRfidAntennaEnabledState
nameWithType: API.GetRfidAntennaEnabledState
- uid: SpotLib.API.GetRfidAntennaList(System.Int32,System.Collections.Generic.List{SpotLib.Antenna}@)
name: GetRfidAntennaList(Int32, out List<Antenna>)
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaList_System_Int32_System_Collections_Generic_List_SpotLib_Antenna___
commentId: M:SpotLib.API.GetRfidAntennaList(System.Int32,System.Collections.Generic.List{SpotLib.Antenna}@)
name.vb: GetRfidAntennaList(Int32, ByRef List(Of Antenna))
fullName: SpotLib.API.GetRfidAntennaList(System.Int32, out System.Collections.Generic.List<SpotLib.Antenna>)
fullName.vb: SpotLib.API.GetRfidAntennaList(System.Int32, ByRef System.Collections.Generic.List(Of SpotLib.Antenna))
nameWithType: API.GetRfidAntennaList(Int32, out List<Antenna>)
nameWithType.vb: API.GetRfidAntennaList(Int32, ByRef List(Of Antenna))
- uid: SpotLib.API.GetRfidAntennaList*
name: GetRfidAntennaList
href: api/SpotLib.API.html#SpotLib_API_GetRfidAntennaList_
commentId: Overload:SpotLib.API.GetRfidAntennaList
isSpec: "True"
fullName: SpotLib.API.GetRfidAntennaList
nameWithType: API.GetRfidAntennaList
- uid: SpotLib.API.GetRfidChannel(System.Int32,System.UInt32@)
name: GetRfidChannel(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidChannel_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetRfidChannel(System.Int32,System.UInt32@)
name.vb: GetRfidChannel(Int32, ByRef UInt32)
fullName: SpotLib.API.GetRfidChannel(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetRfidChannel(System.Int32, ByRef System.UInt32)
nameWithType: API.GetRfidChannel(Int32, out UInt32)
nameWithType.vb: API.GetRfidChannel(Int32, ByRef UInt32)
- uid: SpotLib.API.GetRfidChannel*
name: GetRfidChannel
href: api/SpotLib.API.html#SpotLib_API_GetRfidChannel_
commentId: Overload:SpotLib.API.GetRfidChannel
isSpec: "True"
fullName: SpotLib.API.GetRfidChannel
nameWithType: API.GetRfidChannel
- uid: SpotLib.API.GetRfidCodeMode(System.Int32,SpotLib.RfidCodeMode@)
name: GetRfidCodeMode(Int32, out RfidCodeMode)
href: api/SpotLib.API.html#SpotLib_API_GetRfidCodeMode_System_Int32_SpotLib_RfidCodeMode__
commentId: M:SpotLib.API.GetRfidCodeMode(System.Int32,SpotLib.RfidCodeMode@)
name.vb: GetRfidCodeMode(Int32, ByRef RfidCodeMode)
fullName: SpotLib.API.GetRfidCodeMode(System.Int32, out SpotLib.RfidCodeMode)
fullName.vb: SpotLib.API.GetRfidCodeMode(System.Int32, ByRef SpotLib.RfidCodeMode)
nameWithType: API.GetRfidCodeMode(Int32, out RfidCodeMode)
nameWithType.vb: API.GetRfidCodeMode(Int32, ByRef RfidCodeMode)
- uid: SpotLib.API.GetRfidCodeMode*
name: GetRfidCodeMode
href: api/SpotLib.API.html#SpotLib_API_GetRfidCodeMode_
commentId: Overload:SpotLib.API.GetRfidCodeMode
isSpec: "True"
fullName: SpotLib.API.GetRfidCodeMode
nameWithType: API.GetRfidCodeMode
- uid: SpotLib.API.GetRfidContinuesEnabledState(System.Int32,System.Boolean@)
name: GetRfidContinuesEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetRfidContinuesEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetRfidContinuesEnabledState(System.Int32,System.Boolean@)
name.vb: GetRfidContinuesEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetRfidContinuesEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetRfidContinuesEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetRfidContinuesEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetRfidContinuesEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetRfidContinuesEnabledState*
name: GetRfidContinuesEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetRfidContinuesEnabledState_
commentId: Overload:SpotLib.API.GetRfidContinuesEnabledState
isSpec: "True"
fullName: SpotLib.API.GetRfidContinuesEnabledState
nameWithType: API.GetRfidContinuesEnabledState
- uid: SpotLib.API.GetRfidEnabledState(System.Int32,System.Boolean@)
name: GetRfidEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetRfidEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetRfidEnabledState(System.Int32,System.Boolean@)
name.vb: GetRfidEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetRfidEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetRfidEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetRfidEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetRfidEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetRfidEnabledState*
name: GetRfidEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetRfidEnabledState_
commentId: Overload:SpotLib.API.GetRfidEnabledState
isSpec: "True"
fullName: SpotLib.API.GetRfidEnabledState
nameWithType: API.GetRfidEnabledState
- uid: SpotLib.API.GetRfidFilterThreshold(System.Int32,System.Int32@)
name: GetRfidFilterThreshold(Int32, out Int32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidFilterThreshold_System_Int32_System_Int32__
commentId: M:SpotLib.API.GetRfidFilterThreshold(System.Int32,System.Int32@)
name.vb: GetRfidFilterThreshold(Int32, ByRef Int32)
fullName: SpotLib.API.GetRfidFilterThreshold(System.Int32, out System.Int32)
fullName.vb: SpotLib.API.GetRfidFilterThreshold(System.Int32, ByRef System.Int32)
nameWithType: API.GetRfidFilterThreshold(Int32, out Int32)
nameWithType.vb: API.GetRfidFilterThreshold(Int32, ByRef Int32)
- uid: SpotLib.API.GetRfidFilterThreshold*
name: GetRfidFilterThreshold
href: api/SpotLib.API.html#SpotLib_API_GetRfidFilterThreshold_
commentId: Overload:SpotLib.API.GetRfidFilterThreshold
isSpec: "True"
fullName: SpotLib.API.GetRfidFilterThreshold
nameWithType: API.GetRfidFilterThreshold
- uid: SpotLib.API.GetRfidInventoryEnabledState(System.Int32,System.Boolean@)
name: GetRfidInventoryEnabledState(Int32, out Boolean)
href: api/SpotLib.API.html#SpotLib_API_GetRfidInventoryEnabledState_System_Int32_System_Boolean__
commentId: M:SpotLib.API.GetRfidInventoryEnabledState(System.Int32,System.Boolean@)
name.vb: GetRfidInventoryEnabledState(Int32, ByRef Boolean)
fullName: SpotLib.API.GetRfidInventoryEnabledState(System.Int32, out System.Boolean)
fullName.vb: SpotLib.API.GetRfidInventoryEnabledState(System.Int32, ByRef System.Boolean)
nameWithType: API.GetRfidInventoryEnabledState(Int32, out Boolean)
nameWithType.vb: API.GetRfidInventoryEnabledState(Int32, ByRef Boolean)
- uid: SpotLib.API.GetRfidInventoryEnabledState*
name: GetRfidInventoryEnabledState
href: api/SpotLib.API.html#SpotLib_API_GetRfidInventoryEnabledState_
commentId: Overload:SpotLib.API.GetRfidInventoryEnabledState
isSpec: "True"
fullName: SpotLib.API.GetRfidInventoryEnabledState
nameWithType: API.GetRfidInventoryEnabledState
- uid: SpotLib.API.GetRfidMaxQ(System.Int32,System.UInt32@)
name: GetRfidMaxQ(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidMaxQ_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetRfidMaxQ(System.Int32,System.UInt32@)
name.vb: GetRfidMaxQ(Int32, ByRef UInt32)
fullName: SpotLib.API.GetRfidMaxQ(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetRfidMaxQ(System.Int32, ByRef System.UInt32)
nameWithType: API.GetRfidMaxQ(Int32, out UInt32)
nameWithType.vb: API.GetRfidMaxQ(Int32, ByRef UInt32)
- uid: SpotLib.API.GetRfidMaxQ*
name: GetRfidMaxQ
href: api/SpotLib.API.html#SpotLib_API_GetRfidMaxQ_
commentId: Overload:SpotLib.API.GetRfidMaxQ
isSpec: "True"
fullName: SpotLib.API.GetRfidMaxQ
nameWithType: API.GetRfidMaxQ
- uid: SpotLib.API.GetRfidMinQ(System.Int32,System.UInt32@)
name: GetRfidMinQ(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidMinQ_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetRfidMinQ(System.Int32,System.UInt32@)
name.vb: GetRfidMinQ(Int32, ByRef UInt32)
fullName: SpotLib.API.GetRfidMinQ(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetRfidMinQ(System.Int32, ByRef System.UInt32)
nameWithType: API.GetRfidMinQ(Int32, out UInt32)
nameWithType.vb: API.GetRfidMinQ(Int32, ByRef UInt32)
- uid: SpotLib.API.GetRfidMinQ*
name: GetRfidMinQ
href: api/SpotLib.API.html#SpotLib_API_GetRfidMinQ_
commentId: Overload:SpotLib.API.GetRfidMinQ
isSpec: "True"
fullName: SpotLib.API.GetRfidMinQ
nameWithType: API.GetRfidMinQ
- uid: SpotLib.API.GetRfidPeriodMs(System.Int32,System.UInt32@)
name: GetRfidPeriodMs(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidPeriodMs_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetRfidPeriodMs(System.Int32,System.UInt32@)
name.vb: GetRfidPeriodMs(Int32, ByRef UInt32)
fullName: SpotLib.API.GetRfidPeriodMs(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetRfidPeriodMs(System.Int32, ByRef System.UInt32)
nameWithType: API.GetRfidPeriodMs(Int32, out UInt32)
nameWithType.vb: API.GetRfidPeriodMs(Int32, ByRef UInt32)
- uid: SpotLib.API.GetRfidPeriodMs*
name: GetRfidPeriodMs
href: api/SpotLib.API.html#SpotLib_API_GetRfidPeriodMs_
commentId: Overload:SpotLib.API.GetRfidPeriodMs
isSpec: "True"
fullName: SpotLib.API.GetRfidPeriodMs
nameWithType: API.GetRfidPeriodMs
- uid: SpotLib.API.GetRfidPower(System.Int32,System.UInt32@)
name: GetRfidPower(Int32, out UInt32)
href: api/SpotLib.API.html#SpotLib_API_GetRfidPower_System_Int32_System_UInt32__
commentId: M:SpotLib.API.GetRfidPower(System.Int32,System.UInt32@)
name.vb: GetRfidPower(Int32, ByRef UInt32)
fullName: SpotLib.API.GetRfidPower(System.Int32, out System.UInt32)
fullName.vb: SpotLib.API.GetRfidPower(System.Int32, ByRef System.UInt32)
nameWithType: API.GetRfidPower(Int32, out UInt32)
nameWithType.vb: API.GetRfidPower(Int32, ByRef UInt32)
- uid: SpotLib.API.GetRfidPower*
name: GetRfidPower
href: api/SpotLib.API.html#SpotLib_API_GetRfidPower_
commentId: Overload:SpotLib.API.GetRfidPower
isSpec: "True"
fullName: SpotLib.API.GetRfidPower
nameWithType: API.GetRfidPower
- uid: SpotLib.API.GetRfidRegion(System.Int32,SpotLib.RfidRegionType@)
name: GetRfidRegion(Int32, out RfidRegionType)
href: api/SpotLib.API.html#SpotLib_API_GetRfidRegion_System_Int32_SpotLib_RfidRegionType__
commentId: M:SpotLib.API.GetRfidRegion(System.Int32,SpotLib.RfidRegionType@)
name.vb: GetRfidRegion(Int32, ByRef RfidRegionType)
fullName: SpotLib.API.GetRfidRegion(System.Int32, out SpotLib.RfidRegionType)
fullName.vb: SpotLib.API.GetRfidRegion(System.Int32, ByRef SpotLib.RfidRegionType)
nameWithType: API.GetRfidRegion(Int32, out RfidRegionType)
nameWithType.vb: API.GetRfidRegion(Int32, ByRef RfidRegionType)
- uid: SpotLib.API.GetRfidRegion*
name: GetRfidRegion
href: api/SpotLib.API.html#SpotLib_API_GetRfidRegion_
commentId: Overload:SpotLib.API.GetRfidRegion
isSpec: "True"
fullName: SpotLib.API.GetRfidRegion
nameWithType: API.GetRfidRegion
- uid: SpotLib.API.GetSecondaryDNS(System.Int32,System.String@)
name: GetSecondaryDNS(Int32, out String)
href: api/SpotLib.API.html#SpotLib_API_GetSecondaryDNS_System_Int32_System_String__
commentId: M:SpotLib.API.GetSecondaryDNS(System.Int32,System.String@)
name.vb: GetSecondaryDNS(Int32, ByRef String)
fullName: SpotLib.API.GetSecondaryDNS(System.Int32, out System.String)
fullName.vb: SpotLib.API.GetSecondaryDNS(System.Int32, ByRef System.String)
nameWithType: API.GetSecondaryDNS(Int32, out String)
nameWithType.vb: API.GetSecondaryDNS(Int32, ByRef String)
- uid: SpotLib.API.GetSecondaryDNS*
name: GetSecondaryDNS
href: api/SpotLib.API.html#SpotLib_API_GetSecondaryDNS_
commentId: Overload:SpotLib.API.GetSecondaryDNS
isSpec: "True"
fullName: SpotLib.API.GetSecondaryDNS
nameWithType: API.GetSecondaryDNS
- uid: SpotLib.API.GetSpotCount
name: GetSpotCount()
href: api/SpotLib.API.html#SpotLib_API_GetSpotCount
commentId: M:SpotLib.API.GetSpotCount
fullName: SpotLib.API.GetSpotCount()
nameWithType: API.GetSpotCount()
- uid: SpotLib.API.GetSpotCount*
name: GetSpotCount
href: api/SpotLib.API.html#SpotLib_API_GetSpotCount_
commentId: Overload:SpotLib.API.GetSpotCount
isSpec: "True"
fullName: SpotLib.API.GetSpotCount
nameWithType: API.GetSpotCount
- uid: SpotLib.API.GetSpotIDs
name: GetSpotIDs()
href: api/SpotLib.API.html#SpotLib_API_GetSpotIDs
commentId: M:SpotLib.API.GetSpotIDs
fullName: SpotLib.API.GetSpotIDs()
nameWithType: API.GetSpotIDs()
- uid: SpotLib.API.GetSpotIDs*
name: GetSpotIDs
href: api/SpotLib.API.html#SpotLib_API_GetSpotIDs_
commentId: Overload:SpotLib.API.GetSpotIDs
isSpec: "True"
fullName: SpotLib.API.GetSpotIDs
nameWithType: API.GetSpotIDs
- uid: SpotLib.API.Init
name: Init()
href: api/SpotLib.API.html#SpotLib_API_Init
commentId: M:SpotLib.API.Init
fullName: SpotLib.API.Init()
nameWithType: API.Init()
- uid: SpotLib.API.Init*
name: Init
href: api/SpotLib.API.html#SpotLib_API_Init_
commentId: Overload:SpotLib.API.Init
isSpec: "True"
fullName: SpotLib.API.Init
nameWithType: API.Init
- uid: SpotLib.API.IsConnected(System.Int32)
name: IsConnected(Int32)
href: api/SpotLib.API.html#SpotLib_API_IsConnected_System_Int32_
commentId: M:SpotLib.API.IsConnected(System.Int32)
fullName: SpotLib.API.IsConnected(System.Int32)
nameWithType: API.IsConnected(Int32)
- uid: SpotLib.API.IsConnected*
name: IsConnected
href: api/SpotLib.API.html#SpotLib_API_IsConnected_
commentId: Overload:SpotLib.API.IsConnected
isSpec: "True"
fullName: SpotLib.API.IsConnected
nameWithType: API.IsConnected
- uid: SpotLib.API.IsInit
name: IsInit
href: api/SpotLib.API.html#SpotLib_API_IsInit
commentId: P:SpotLib.API.IsInit
fullName: SpotLib.API.IsInit
nameWithType: API.IsInit
- uid: SpotLib.API.IsInit*
name: IsInit
href: api/SpotLib.API.html#SpotLib_API_IsInit_
commentId: Overload:SpotLib.API.IsInit
isSpec: "True"
fullName: SpotLib.API.IsInit
nameWithType: API.IsInit
- uid: SpotLib.API.Item
name: Item
href: api/SpotLib.API.html#SpotLib_API_Item
commentId: E:SpotLib.API.Item
fullName: SpotLib.API.Item
nameWithType: API.Item
- uid: SpotLib.API.Presence
name: Presence
href: api/SpotLib.API.html#SpotLib_API_Presence
commentId: E:SpotLib.API.Presence
fullName: SpotLib.API.Presence
nameWithType: API.Presence
- uid: SpotLib.API.RawHit
name: RawHit
href: api/SpotLib.API.html#SpotLib_API_RawHit
commentId: E:SpotLib.API.RawHit
fullName: SpotLib.API.RawHit
nameWithType: API.RawHit
- uid: SpotLib.API.SetAntennaMaxSWR(System.Int32,System.UInt32)
name: SetAntennaMaxSWR(Int32, UInt32)
href: api/SpotLib.API.html#SpotLib_API_SetAntennaMaxSWR_System_Int32_System_UInt32_
commentId: M:SpotLib.API.SetAntennaMaxSWR(System.Int32,System.UInt32)
fullName: SpotLib.API.SetAntennaMaxSWR(System.Int32, System.UInt32)
nameWithType: API.SetAntennaMaxSWR(Int32, UInt32)
- uid: SpotLib.API.SetAntennaMaxSWR*
name: SetAntennaMaxSWR
href: api/SpotLib.API.html#SpotLib_API_SetAntennaMaxSWR_
commentId: Overload:SpotLib.API.SetAntennaMaxSWR
isSpec: "True"
fullName: SpotLib.API.SetAntennaMaxSWR
nameWithType: API.SetAntennaMaxSWR
- uid: SpotLib.API.SetAntennaPresencesEnabledState(System.Int32,System.Boolean)
name: SetAntennaPresencesEnabledState(Int32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetAntennaPresencesEnabledState_System_Int32_System_Boolean_
commentId: M:SpotLib.API.SetAntennaPresencesEnabledState(System.Int32,System.Boolean)
fullName: SpotLib.API.SetAntennaPresencesEnabledState(System.Int32, System.Boolean)
nameWithType: API.SetAntennaPresencesEnabledState(Int32, Boolean)
- uid: SpotLib.API.SetAntennaPresencesEnabledState*
name: SetAntennaPresencesEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetAntennaPresencesEnabledState_
commentId: Overload:SpotLib.API.SetAntennaPresencesEnabledState
isSpec: "True"
fullName: SpotLib.API.SetAntennaPresencesEnabledState
nameWithType: API.SetAntennaPresencesEnabledState
- uid: SpotLib.API.SetBluetoothEnabledState(System.Int32,System.Boolean)
name: SetBluetoothEnabledState(Int32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetBluetoothEnabledState_System_Int32_System_Boolean_
commentId: M:SpotLib.API.SetBluetoothEnabledState(System.Int32,System.Boolean)
fullName: SpotLib.API.SetBluetoothEnabledState(System.Int32, System.Boolean)
nameWithType: API.SetBluetoothEnabledState(Int32, Boolean)
- uid: SpotLib.API.SetBluetoothEnabledState*
name: SetBluetoothEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetBluetoothEnabledState_
commentId: Overload:SpotLib.API.SetBluetoothEnabledState
isSpec: "True"
fullName: SpotLib.API.SetBluetoothEnabledState
nameWithType: API.SetBluetoothEnabledState
- uid: SpotLib.API.SetBluetoothFilterThreshold(System.Int32,System.Int32)
name: SetBluetoothFilterThreshold(Int32, Int32)
href: api/SpotLib.API.html#SpotLib_API_SetBluetoothFilterThreshold_System_Int32_System_Int32_
commentId: M:SpotLib.API.SetBluetoothFilterThreshold(System.Int32,System.Int32)
fullName: SpotLib.API.SetBluetoothFilterThreshold(System.Int32, System.Int32)
nameWithType: API.SetBluetoothFilterThreshold(Int32, Int32)
- uid: SpotLib.API.SetBluetoothFilterThreshold*
name: SetBluetoothFilterThreshold
href: api/SpotLib.API.html#SpotLib_API_SetBluetoothFilterThreshold_
commentId: Overload:SpotLib.API.SetBluetoothFilterThreshold
isSpec: "True"
fullName: SpotLib.API.SetBluetoothFilterThreshold
nameWithType: API.SetBluetoothFilterThreshold
- uid: SpotLib.API.SetFilterHysteresis(System.Int32,SpotLib.TechnologyType,System.UInt32)
name: SetFilterHysteresis(Int32, TechnologyType, UInt32)
href: api/SpotLib.API.html#SpotLib_API_SetFilterHysteresis_System_Int32_SpotLib_TechnologyType_System_UInt32_
commentId: M:SpotLib.API.SetFilterHysteresis(System.Int32,SpotLib.TechnologyType,System.UInt32)
fullName: SpotLib.API.SetFilterHysteresis(System.Int32, SpotLib.TechnologyType, System.UInt32)
nameWithType: API.SetFilterHysteresis(Int32, TechnologyType, UInt32)
- uid: SpotLib.API.SetFilterHysteresis*
name: SetFilterHysteresis
href: api/SpotLib.API.html#SpotLib_API_SetFilterHysteresis_
commentId: Overload:SpotLib.API.SetFilterHysteresis
isSpec: "True"
fullName: SpotLib.API.SetFilterHysteresis
nameWithType: API.SetFilterHysteresis
- uid: SpotLib.API.SetFilterWindowSize(System.Int32,SpotLib.TechnologyType,System.UInt32)
name: SetFilterWindowSize(Int32, TechnologyType, UInt32)
href: api/SpotLib.API.html#SpotLib_API_SetFilterWindowSize_System_Int32_SpotLib_TechnologyType_System_UInt32_
commentId: M:SpotLib.API.SetFilterWindowSize(System.Int32,SpotLib.TechnologyType,System.UInt32)
fullName: SpotLib.API.SetFilterWindowSize(System.Int32, SpotLib.TechnologyType, System.UInt32)
nameWithType: API.SetFilterWindowSize(Int32, TechnologyType, UInt32)
- uid: SpotLib.API.SetFilterWindowSize*
name: SetFilterWindowSize
href: api/SpotLib.API.html#SpotLib_API_SetFilterWindowSize_
commentId: Overload:SpotLib.API.SetFilterWindowSize
isSpec: "True"
fullName: SpotLib.API.SetFilterWindowSize
nameWithType: API.SetFilterWindowSize
- uid: SpotLib.API.SetFirmwareUpdateEnabledState(System.Int32,System.Boolean,System.UInt32)
name: SetFirmwareUpdateEnabledState(Int32, Boolean, UInt32)
href: api/SpotLib.API.html#SpotLib_API_SetFirmwareUpdateEnabledState_System_Int32_System_Boolean_System_UInt32_
commentId: M:SpotLib.API.SetFirmwareUpdateEnabledState(System.Int32,System.Boolean,System.UInt32)
fullName: SpotLib.API.SetFirmwareUpdateEnabledState(System.Int32, System.Boolean, System.UInt32)
nameWithType: API.SetFirmwareUpdateEnabledState(Int32, Boolean, UInt32)
- uid: SpotLib.API.SetFirmwareUpdateEnabledState*
name: SetFirmwareUpdateEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetFirmwareUpdateEnabledState_
commentId: Overload:SpotLib.API.SetFirmwareUpdateEnabledState
isSpec: "True"
fullName: SpotLib.API.SetFirmwareUpdateEnabledState
nameWithType: API.SetFirmwareUpdateEnabledState
- uid: SpotLib.API.SetHoldTime(System.Int32,System.UInt32)
name: SetHoldTime(Int32, UInt32)
href: api/SpotLib.API.html#SpotLib_API_SetHoldTime_System_Int32_System_UInt32_
commentId: M:SpotLib.API.SetHoldTime(System.Int32,System.UInt32)
fullName: SpotLib.API.SetHoldTime(System.Int32, System.UInt32)
nameWithType: API.SetHoldTime(Int32, UInt32)
- uid: SpotLib.API.SetHoldTime*
name: SetHoldTime
href: api/SpotLib.API.html#SpotLib_API_SetHoldTime_
commentId: Overload:SpotLib.API.SetHoldTime
isSpec: "True"
fullName: SpotLib.API.SetHoldTime
nameWithType: API.SetHoldTime
- uid: SpotLib.API.SetHoldTimeAutomaticEnabledState(System.Int32,System.Boolean)
name: SetHoldTimeAutomaticEnabledState(Int32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetHoldTimeAutomaticEnabledState_System_Int32_System_Boolean_
commentId: M:SpotLib.API.SetHoldTimeAutomaticEnabledState(System.Int32,System.Boolean)
fullName: SpotLib.API.SetHoldTimeAutomaticEnabledState(System.Int32, System.Boolean)
nameWithType: API.SetHoldTimeAutomaticEnabledState(Int32, Boolean)
- uid: SpotLib.API.SetHoldTimeAutomaticEnabledState*
name: SetHoldTimeAutomaticEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetHoldTimeAutomaticEnabledState_
commentId: Overload:SpotLib.API.SetHoldTimeAutomaticEnabledState
isSpec: "True"
fullName: SpotLib.API.SetHoldTimeAutomaticEnabledState
nameWithType: API.SetHoldTimeAutomaticEnabledState
- uid: SpotLib.API.SetProximityLevel(System.Int32,SpotLib.TechnologyType,SpotLib.ProximityType,System.Int32)
name: SetProximityLevel(Int32, TechnologyType, ProximityType, Int32)
href: api/SpotLib.API.html#SpotLib_API_SetProximityLevel_System_Int32_SpotLib_TechnologyType_SpotLib_ProximityType_System_Int32_
commentId: M:SpotLib.API.SetProximityLevel(System.Int32,SpotLib.TechnologyType,SpotLib.ProximityType,System.Int32)
fullName: SpotLib.API.SetProximityLevel(System.Int32, SpotLib.TechnologyType, SpotLib.ProximityType, System.Int32)
nameWithType: API.SetProximityLevel(Int32, TechnologyType, ProximityType, Int32)
- uid: SpotLib.API.SetProximityLevel*
name: SetProximityLevel
href: api/SpotLib.API.html#SpotLib_API_SetProximityLevel_
commentId: Overload:SpotLib.API.SetProximityLevel
isSpec: "True"
fullName: SpotLib.API.SetProximityLevel
nameWithType: API.SetProximityLevel
- uid: SpotLib.API.SetRawHitEventsEnabledState(System.Int32,System.Boolean)
name: SetRawHitEventsEnabledState(Int32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetRawHitEventsEnabledState_System_Int32_System_Boolean_
commentId: M:SpotLib.API.SetRawHitEventsEnabledState(System.Int32,System.Boolean)
fullName: SpotLib.API.SetRawHitEventsEnabledState(System.Int32, System.Boolean)
nameWithType: API.SetRawHitEventsEnabledState(Int32, Boolean)
- uid: SpotLib.API.SetRawHitEventsEnabledState*
name: SetRawHitEventsEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetRawHitEventsEnabledState_
commentId: Overload:SpotLib.API.SetRawHitEventsEnabledState
isSpec: "True"
fullName: SpotLib.API.SetRawHitEventsEnabledState
nameWithType: API.SetRawHitEventsEnabledState
- uid: SpotLib.API.SetRfidAntennaDisableMask(System.Int32,System.UInt32,System.Boolean)
name: SetRfidAntennaDisableMask(Int32, UInt32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetRfidAntennaDisableMask_System_Int32_System_UInt32_System_Boolean_
commentId: M:SpotLib.API.SetRfidAntennaDisableMask(System.Int32,System.UInt32,System.Boolean)
fullName: SpotLib.API.SetRfidAntennaDisableMask(System.Int32, System.UInt32, System.Boolean)
nameWithType: API.SetRfidAntennaDisableMask(Int32, UInt32, Boolean)
- uid: SpotLib.API.SetRfidAntennaDisableMask*
name: SetRfidAntennaDisableMask
href: api/SpotLib.API.html#SpotLib_API_SetRfidAntennaDisableMask_
commentId: Overload:SpotLib.API.SetRfidAntennaDisableMask
isSpec: "True"
fullName: SpotLib.API.SetRfidAntennaDisableMask
nameWithType: API.SetRfidAntennaDisableMask
- uid: SpotLib.API.SetRfidAntennaEnabledState(System.Int32,System.UInt32,System.Boolean,System.Boolean)
name: SetRfidAntennaEnabledState(Int32, UInt32, Boolean, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetRfidAntennaEnabledState_System_Int32_System_UInt32_System_Boolean_System_Boolean_
commentId: M:SpotLib.API.SetRfidAntennaEnabledState(System.Int32,System.UInt32,System.Boolean,System.Boolean)
fullName: SpotLib.API.SetRfidAntennaEnabledState(System.Int32, System.UInt32, System.Boolean, System.Boolean)
nameWithType: API.SetRfidAntennaEnabledState(Int32, UInt32, Boolean, Boolean)
- uid: SpotLib.API.SetRfidAntennaEnabledState*
name: SetRfidAntennaEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetRfidAntennaEnabledState_
commentId: Overload:SpotLib.API.SetRfidAntennaEnabledState
isSpec: "True"
fullName: SpotLib.API.SetRfidAntennaEnabledState
nameWithType: API.SetRfidAntennaEnabledState
- uid: SpotLib.API.SetRfidChannel(System.Int32,System.UInt32)
name: SetRfidChannel(Int32, UInt32)
href: api/SpotLib.API.html#SpotLib_API_SetRfidChannel_System_Int32_System_UInt32_
commentId: M:SpotLib.API.SetRfidChannel(System.Int32,System.UInt32)
fullName: SpotLib.API.SetRfidChannel(System.Int32, System.UInt32)
nameWithType: API.SetRfidChannel(Int32, UInt32)
- uid: SpotLib.API.SetRfidChannel*
name: SetRfidChannel
href: api/SpotLib.API.html#SpotLib_API_SetRfidChannel_
commentId: Overload:SpotLib.API.SetRfidChannel
isSpec: "True"
fullName: SpotLib.API.SetRfidChannel
nameWithType: API.SetRfidChannel
- uid: SpotLib.API.SetRfidCodeMode(System.Int32,SpotLib.RfidCodeMode)
name: SetRfidCodeMode(Int32, RfidCodeMode)
href: api/SpotLib.API.html#SpotLib_API_SetRfidCodeMode_System_Int32_SpotLib_RfidCodeMode_
commentId: M:SpotLib.API.SetRfidCodeMode(System.Int32,SpotLib.RfidCodeMode)
fullName: SpotLib.API.SetRfidCodeMode(System.Int32, SpotLib.RfidCodeMode)
nameWithType: API.SetRfidCodeMode(Int32, RfidCodeMode)
- uid: SpotLib.API.SetRfidCodeMode*
name: SetRfidCodeMode
href: api/SpotLib.API.html#SpotLib_API_SetRfidCodeMode_
commentId: Overload:SpotLib.API.SetRfidCodeMode
isSpec: "True"
fullName: SpotLib.API.SetRfidCodeMode
nameWithType: API.SetRfidCodeMode
- uid: SpotLib.API.SetRfidContinuesEnabledState(System.Int32,System.Boolean)
name: SetRfidContinuesEnabledState(Int32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetRfidContinuesEnabledState_System_Int32_System_Boolean_
commentId: M:SpotLib.API.SetRfidContinuesEnabledState(System.Int32,System.Boolean)
fullName: SpotLib.API.SetRfidContinuesEnabledState(System.Int32, System.Boolean)
nameWithType: API.SetRfidContinuesEnabledState(Int32, Boolean)
- uid: SpotLib.API.SetRfidContinuesEnabledState*
name: SetRfidContinuesEnabledState
href: api/SpotLib.API.html#SpotLib_API_SetRfidContinuesEnabledState_
commentId: Overload:SpotLib.API.SetRfidContinuesEnabledState
isSpec: "True"
fullName: SpotLib.API.SetRfidContinuesEnabledState
nameWithType: API.SetRfidContinuesEnabledState
- uid: SpotLib.API.SetRfidEnabledState(System.Int32,System.Boolean)
name: SetRfidEnabledState(Int32, Boolean)
href: api/SpotLib.API.html#SpotLib_API_SetRfidEnabledState_System_Int32_System_Boolean_
commentId: M:SpotLib.API.SetRfidEnabledState(System.Int32,System.Boolean)
fullName: SpotLib.API.SetRfidEnabledState(System.Int32, System.Boolean)
nameWithType: API.SetRfidEnabledState(Int32, Boolean)