forked from selenur/OLD---CNC-controller-version-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LibUsbDotNet.xml
7480 lines (7411 loc) · 425 KB
/
LibUsbDotNet.xml
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
<?xml version="1.0"?>
<doc>
<assembly>
<name>LibUsbDotNet</name>
</assembly>
<members>
<member name="T:LibUsbDotNet.Main.UsbRegDeviceList">
<summary>
Array of USB device available for communication via LibUsb or WinUsb.
</summary>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.#ctor">
<summary>
Creates an empty <see cref="T:LibUsbDotNet.Main.UsbRegDeviceList"/> instance.
</summary>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.System#Collections#Generic#IEnumerable{LibUsbDotNet#Main#UsbRegistry}#GetEnumerator">
<summary>
Returns an enumerator that iterates through the collection.
</summary>
<returns>
A <see cref="T:System.Collections.Generic.IEnumerator`1"/> that can be used to iterate through the collection.
</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.GetEnumerator">
<summary>
Returns an enumerator that iterates through a collection.
</summary>
<returns>
An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.Find(System.Predicate{LibUsbDotNet.Main.UsbRegistry})">
<summary>
Find the first UsbRegistry device that matches the FindUsbPredicate.
</summary>
<param name="findUsbPredicate">The predicate function to use.</param>
<returns>A valid usb registry class if the device was found or Null if the device was not found.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.FindAll(System.Predicate{LibUsbDotNet.Main.UsbRegistry})">
<summary>
Find all UsbRegistry devices that matches the FindUsbPredicate.
</summary>
<param name="findUsbPredicate">The predicate function to use.</param>
<returns>All usb registry classes that match.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.FindLast(System.Predicate{LibUsbDotNet.Main.UsbRegistry})">
<summary>
Find the last a UsbRegistry device that matches the FindUsbPredicate.
</summary>
<param name="findUsbPredicate">The predicate function to use.</param>
<returns>A valid usb registry class if the device was found or Null if the device was not found.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.Find(LibUsbDotNet.Main.UsbDeviceFinder)">
<summary>
Find the first UsbRegistry device using a <see cref="T:LibUsbDotNet.Main.UsbDeviceFinder"/> instance.
</summary>
<param name="usbDeviceFinder">The <see cref="T:LibUsbDotNet.Main.UsbDeviceFinder"/> instance used to locate the usb registry devices.</param>
<returns>A valid usb registry class if the device was found or Null if the device was not found.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.FindAll(LibUsbDotNet.Main.UsbDeviceFinder)">
<summary>
Find all UsbRegistry devices using a <see cref="T:LibUsbDotNet.Main.UsbDeviceFinder"/> instance.
</summary>
<param name="usbDeviceFinder">The <see cref="T:LibUsbDotNet.Main.UsbDeviceFinder"/> instance used to locate the usb registry devices.</param>
<returns>All usb registry classes that match.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.FindLast(LibUsbDotNet.Main.UsbDeviceFinder)">
<summary>
Find the last UsbRegistry devices using a <see cref="T:LibUsbDotNet.Main.UsbDeviceFinder"/> instance.
</summary>
<param name="usbDeviceFinder">The <see cref="T:LibUsbDotNet.Main.UsbDeviceFinder"/> instance used to locate the usb registry devices.</param>
<returns>A valid usb registry class if the device was found or Null if the device was not found.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.Contains(LibUsbDotNet.Main.UsbRegistry)">
<summary>
Determines whether the <see cref="T:System.Collections.Generic.ICollection`1"/> contains a specific value.
</summary>
<returns>
true if item is found in the <see cref="T:System.Collections.Generic.ICollection`1"/>; otherwise, false.
</returns>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1"/>.</param>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.CopyTo(LibUsbDotNet.Main.UsbRegistry[],System.Int32)">
<summary>
Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1"/> to an <see cref="T:System.Array"/>, starting at a particular <see cref="T:System.Array"/> index.
</summary>
<param name="array">The one-dimensional <see cref="T:System.Array"/> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1"/>. The <see cref="T:System.Array"/> must have zero-based indexing.</param>
<param name="offset">The zero-based index in Array at which copying begins.</param>
<exception cref="T:System.ArgumentOutOfRangeException">Offset is less than 0.</exception>
<exception cref="T:System.ArgumentNullException">Array is null.</exception>
<exception cref="T:System.ArgumentException">Array is multidimensional.-or-Offset is equal to or greater than the length of Array.-or-The number of elements in the source <see cref="T:System.Collections.Generic.ICollection`1"/> is greater than the available space from Offset to the end of the destination Array.-or-Type T cannot be cast automatically to the type of the destination Array.</exception>
</member>
<member name="M:LibUsbDotNet.Main.UsbRegDeviceList.IndexOf(LibUsbDotNet.Main.UsbRegistry)">
<summary>
Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1"/>.
</summary>
<returns>
The index of item if found in the list; otherwise, -1.
</returns>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1"/>.</param>
</member>
<member name="P:LibUsbDotNet.Main.UsbRegDeviceList.Item(System.Int32)">
<summary>
Gets the element at the specified index.
</summary>
<returns>
The element at the specified index.
</returns>
<param name="index">The zero-based index of the element to get or set.</param>
<exception cref="T:System.ArgumentOutOfRangeException">index is not a valid index in the <see cref="T:System.Collections.Generic.IList`1"/>.</exception>
<exception cref="T:System.NotSupportedException">The property is set and the <see cref="T:System.Collections.Generic.IList`1"/> is read-only.</exception>
</member>
<member name="P:LibUsbDotNet.Main.UsbRegDeviceList.Count">
<summary>
Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</summary>
<returns>
The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1"/>.
</returns>
</member>
<member name="T:LibUsbDotNet.UsbEndpointWriter">
<summary>Contains methods for writing data to a <see cref="F:LibUsbDotNet.Main.EndpointType.Bulk"/> or <see cref="F:LibUsbDotNet.Main.EndpointType.Interrupt"/> endpoint using the overloaded <see cref="M:LibUsbDotNet.UsbEndpointWriter.Write(System.Byte[],System.Int32,System.Int32@)"/> functions.
</summary>
</member>
<member name="T:LibUsbDotNet.Main.UsbEndpointBase">
<summary>
Endpoint members common to Read, Write, Bulk, and Interrupt <see cref="T:LibUsbDotNet.Main.EndpointType"/>.
</summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbEndpointBase.MaxReadWrite">
<summary>
The maximum transfer payload size for all usb endpoints.
</summary>
<remarks>
Transfers greater than this amount are automatically split into
multiple transfers. This applies to all endpoint transfer methods
(reads and writes). The default is 4megs (4,194,304 bytes)
</remarks>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.Dispose">
<summary>
Frees resources associated with the endpoint. Once disposed this <see cref="T:LibUsbDotNet.Main.UsbEndpointBase"/> cannot be used.
</summary>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.Abort">
<summary>
Aborts pending IO operation on this enpoint of one exists.
</summary>
<returns>True on success or if no pending IO operation exits.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.Flush">
<summary>
Discards any data that is cached in this endpoint.
</summary>
<returns>True on success.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.Reset">
<summary>
Resets the data toggle and clears the stall condition on an enpoint.
</summary>
<returns>True on success.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.Transfer(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Synchronous bulk/interrupt transfer function.
</summary>
<param name="buffer">An <see cref="T:System.IntPtr"/> to a caller-allocated buffer.</param>
<param name="offset">Position in buffer that transferring begins.</param>
<param name="length">Number of bytes, starting from thr offset parameter to transfer.</param>
<param name="timeout">Maximum time to wait for the transfer to complete.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>True on success.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.Object,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)">
<summary>
Creates, fills and submits an asynchronous <see cref="T:LibUsbDotNet.Main.UsbTransfer"/> context.
</summary>
<remarks>
<note type="tip">This is a non-blocking asynchronous transfer function. This function returns immediately after the context is created and submitted.</note>
</remarks>
<param name="buffer">A caller-allocated buffer for the data that is transferred.</param>
<param name="offset">Position in buffer that transferring begins.</param>
<param name="length">Number of bytes, starting from thr offset parameter to transfer.</param>
<param name="timeout">Maximum time to wait for the transfer to complete.</param>
<param name="transferContext">On <see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/>, a new transfer context.</param>
<returns><see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/> if the transfer context was created and <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/> succeeded.</returns>
<seealso cref="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.IntPtr,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)"/>
<seealso cref="M:LibUsbDotNet.Main.UsbEndpointBase.NewAsyncTransfer"/>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.IntPtr,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)">
<summary>
Creates, fills and submits an asynchronous <see cref="T:LibUsbDotNet.Main.UsbTransfer"/> context.
</summary>
<remarks>
<note type="tip">This is a non-blocking asynchronous transfer function. This function returns immediately after the context is created and submitted.</note>
</remarks>
<param name="buffer">A caller-allocated buffer for the data that is transferred.</param>
<param name="offset">Position in buffer that transferring begins.</param>
<param name="length">Number of bytes, starting from thr offset parameter to transfer.</param>
<param name="timeout">Maximum time to wait for the transfer to complete.</param>
<param name="transferContext">On <see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/>, a new transfer context.</param>
<returns><see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/> if the transfer context was created and <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/> succeeded.</returns>
<seealso cref="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.Object,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)"/>
<seealso cref="M:LibUsbDotNet.Main.UsbEndpointBase.NewAsyncTransfer"/>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.NewAsyncTransfer">
<summary>
Creates a <see cref="T:LibUsbDotNet.Main.UsbTransfer"/> context for asynchronous transfers.
</summary>
<remarks>
<para> This method returns a new, empty transfer context. Unlike <see cref="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.Object,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)">SubmitAsyncTransfer</see>, this context is <c>not</c> filled and submitted.</para>
<note type="tip">This is a non-blocking asynchronous transfer function. This function returns immediately after the context created.</note>
</remarks>
<returns>A new <see cref="T:LibUsbDotNet.Main.UsbTransfer"/> context.</returns>
<seealso cref="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.IntPtr,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)"/>
<seealso cref="M:LibUsbDotNet.Main.UsbEndpointBase.SubmitAsyncTransfer(System.Object,System.Int32,System.Int32,System.Int32,LibUsbDotNet.Main.UsbTransfer@)"/>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.LookupEndpointInfo(LibUsbDotNet.Info.UsbConfigInfo,System.Byte,LibUsbDotNet.Info.UsbInterfaceInfo@,LibUsbDotNet.Info.UsbEndpointInfo@)">
<summary>
Looks up endpoint/interface information in a configuration.
</summary>
<param name="currentConfigInfo">The config to seach.</param>
<param name="endpointAddress">The endpoint address to look for.</param>
<param name="usbInterfaceInfo">On success, the <see cref="T:LibUsbDotNet.Info.UsbInterfaceInfo"/> class for this endpoint.</param>
<param name="usbEndpointInfo">On success, the <see cref="T:LibUsbDotNet.Info.UsbEndpointInfo"/> class for this endpoint.</param>
<returns>True of the endpoint was found, otherwise false.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbEndpointBase.Transfer(System.Object,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Synchronous bulk/interrupt transfer function.
</summary>
<param name="buffer">A caller-allocated buffer for the transfer data. This object is pinned using <see cref="T:LibUsbDotNet.Main.PinnedHandle"/>.</param>
<param name="offset">Position in buffer that transferring begins.</param>
<param name="length">Number of bytes, starting from thr offset parameter to transfer.</param>
<param name="timeout">Maximum time to wait for the transfer to complete.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>True on success.</returns>
</member>
<member name="P:LibUsbDotNet.Main.UsbEndpointBase.IsDisposed">
<summary>
Gets a value indicating if the object is disposed.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbEndpointBase.Device">
<summary>
Gets the <see cref="T:LibUsbDotNet.UsbDevice"/> class this endpoint belongs to.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbEndpointBase.EpNum">
<summary>
Gets the endpoint ID for this <see cref="T:LibUsbDotNet.Main.UsbEndpointBase"/> class.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbEndpointBase.Type">
<summary>
Returns the <see cref="T:LibUsbDotNet.Main.EndpointType"/> for this endpoint.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbEndpointBase.EndpointInfo">
<summary>
Returns the <see cref="T:LibUsbDotNet.Info.UsbEndpointInfo"/> descriptor for this endpoint.
</summary>
</member>
<member name="M:LibUsbDotNet.UsbEndpointWriter.Write(System.Byte[],System.Int32,System.Int32@)">
<summary>
Writes data to the current <see cref="T:LibUsbDotNet.UsbEndpointWriter"/>.
</summary>
<param name="buffer">The buffer storing the data to write.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointWriter.Write(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Writes data to the current <see cref="T:LibUsbDotNet.UsbEndpointWriter"/>.
</summary>
<param name="pBuffer">The buffer storing the data to write.</param>
<param name="offset">The position in buffer to start writing the data from.</param>
<param name="count">The number of bytes to write.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointWriter.Write(System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Writes data to the current <see cref="T:LibUsbDotNet.UsbEndpointWriter"/>.
</summary>
<param name="buffer">The buffer storing the data to write.</param>
<param name="offset">The position in buffer to start writing the data from.</param>
<param name="count">The number of bytes to write.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointWriter.Write(System.Object,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Writes data to the current <see cref="T:LibUsbDotNet.UsbEndpointWriter"/>.
</summary>
<param name="buffer">The buffer storing the data to write.</param>
<param name="offset">The position in buffer to start writing the data from.</param>
<param name="count">The number of bytes to write.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointWriter.Write(System.Object,System.Int32,System.Int32@)">
<summary>
Writes data to the current <see cref="T:LibUsbDotNet.UsbEndpointWriter"/>.
</summary>
<param name="buffer">The buffer storing the data to write.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="T:LibUsbDotNet.UsbEndpointReader">
<summary>
Contains methods for retrieving data from a <see cref="F:LibUsbDotNet.Main.EndpointType.Bulk"/> or <see cref="F:LibUsbDotNet.Main.EndpointType.Interrupt"/> endpoint using the overloaded <see cref="M:LibUsbDotNet.UsbEndpointReader.Read(System.Byte[],System.Int32,System.Int32@)"/> functions or a <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> event.
</summary>
<remarks>
<list type="bullet">
<item>Before using the <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> event, the <see cref="P:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabled"/> property must be set to true.</item>
<item>While the <see cref="P:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabled"/> property is True, the overloaded <see cref="M:LibUsbDotNet.UsbEndpointReader.Read(System.Byte[],System.Int32,System.Int32@)"/> functions cannot be used.</item>
</list>
</remarks>
</member>
<member name="M:LibUsbDotNet.UsbEndpointReader.Read(System.Byte[],System.Int32,System.Int32@)">
<summary>
Reads data from the current <see cref="T:LibUsbDotNet.UsbEndpointReader"/>.
</summary>
<param name="buffer">The buffer to store the recieved data in.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointReader.Read(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Reads data from the current <see cref="T:LibUsbDotNet.UsbEndpointReader"/>.
</summary>
<param name="buffer">The buffer to store the recieved data in.</param>
<param name="offset">The position in buffer to start storing the data.</param>
<param name="count">The maximum number of bytes to receive.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointReader.Read(System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Reads data from the current <see cref="T:LibUsbDotNet.UsbEndpointReader"/>.
</summary>
<param name="buffer">The buffer to store the recieved data in.</param>
<param name="offset">The position in buffer to start storing the data.</param>
<param name="count">The maximum number of bytes to receive.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointReader.Read(System.Object,System.Int32,System.Int32,System.Int32,System.Int32@)">
<summary>
Reads data from the current <see cref="T:LibUsbDotNet.UsbEndpointReader"/>.
</summary>
<param name="buffer">The buffer to store the recieved data in.</param>
<param name="offset">The position in buffer to start storing the data.</param>
<param name="count">The maximum number of bytes to receive.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointReader.Read(System.Object,System.Int32,System.Int32@)">
<summary>
Reads data from the current <see cref="T:LibUsbDotNet.UsbEndpointReader"/>.
</summary>
<param name="buffer">The buffer to store the recieved data in.</param>
<param name="timeout">Maximum time to wait for the transfer to complete. If the transfer times out, the IO operation will be cancelled.</param>
<param name="transferLength">Number of bytes actually transferred.</param>
<returns>
<see cref="T:LibUsbDotNet.Main.ErrorCode"/>.<see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> on success.
</returns>
</member>
<member name="M:LibUsbDotNet.UsbEndpointReader.ReadFlush">
<summary>
Reads/discards data from the enpoint until no more data is available.
</summary>
<returns>Alwats returns <see cref="F:LibUsbDotNet.Main.ErrorCode.None"/> </returns>
</member>
<member name="P:LibUsbDotNet.UsbEndpointReader.DefReadBufferSize">
<summary>
Default read buffer size when using the <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> event.
</summary>
<remarks>
This value can be bypassed using the second parameter of the <see cref="M:LibUsbDotNet.UsbDevice.OpenEndpointReader(LibUsbDotNet.Main.ReadEndpointID,System.Int32)"/> method.
The default is 4096.
</remarks>
</member>
<member name="P:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabled">
<summary>
Gets/Sets a value indicating if the <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> event should be used.
</summary>
<remarks>
If DataReceivedEnabled is true the <see cref="M:LibUsbDotNet.UsbEndpointReader.Read(System.Byte[],System.Int32,System.Int32,System.Int32,System.Int32@)"/> functions cannot be used.
</remarks>
</member>
<member name="P:LibUsbDotNet.UsbEndpointReader.ReadBufferSize">
<summary>
Size of the read buffer in bytes for the <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> event.
</summary>
<remarks>
Setting a large values, for example 64K will yield a lower number of <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> and a higher data rate.
</remarks>
</member>
<member name="P:LibUsbDotNet.UsbEndpointReader.ReadThreadPriority">
<summary>
Gets/Sets the Priority level for the read thread when <see cref="P:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabled"/> is true.
</summary>
</member>
<member name="E:LibUsbDotNet.UsbEndpointReader.DataReceived">
<summary>
The DataReceived Event is fired when new data arrives for the current <see cref="T:LibUsbDotNet.UsbEndpointReader"/>.
</summary>
<remarks>To use the DataReceived event, <see cref="P:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabled"/> must be set to truw.</remarks>
</member>
<member name="E:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabledChanged">
<summary>
The <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceivedEnabledChanged"/> Event is fired when the <see cref="E:LibUsbDotNet.UsbEndpointReader.DataReceived"/> event is started or stopped.
</summary>
</member>
<member name="T:LibUsbDotNet.WinUsb.DeviceInformationTypes">
<summary> Types of information that can be retrieved with the WinUsb QueryDevice function.
</summary>
</member>
<member name="F:LibUsbDotNet.WinUsb.DeviceInformationTypes.DeviceSpeed">
<summary>
The device speed.
</summary>
</member>
<member name="T:MonoLibUsb.MonoUsbDeviceHandle">
<summary>
Represents a Libusb-1.0 device handle.
</summary>
<remarks>
<para>To close a device, see the <see cref="M:MonoLibUsb.MonoUsbDeviceHandle.Close"/> method.</para>
<note title="Libusb-1.0 API Note:" type="cpp">A <see cref="T:MonoLibUsb.MonoUsbDeviceHandle"/> is roughly equivalent to a <a href="http://libusb.sourceforge.net/api-1.0/group__dev.html#ga7df95821d20d27b5597f1d783749d6a4">libusb_device_handle</a>.</note>
</remarks>
<code>
MonoUsbDeviceHandle deviceHandle = new MonoUsbDeviceHandle(profileHandle);
if (deviceHandle.IsInvalid) throw new Exception("Invalid device context.");
</code>
</member>
<member name="T:LibUsbDotNet.Main.SafeContextHandle">
<summary>
Base class for all critial handles.
</summary>
</member>
<member name="M:LibUsbDotNet.Main.SafeContextHandle.#ctor(System.IntPtr,System.Boolean)">
<summary>
</summary>
<param name="pHandle"></param>
<param name="ownsHandle"></param>
</member>
<member name="M:LibUsbDotNet.Main.SafeContextHandle.#ctor(System.IntPtr)">
<summary>
</summary>
<param name="pHandleToOwn"></param>
</member>
<member name="P:LibUsbDotNet.Main.SafeContextHandle.IsInvalid">
<summary>
Gets a value indicating whether the handle value is invalid.
</summary>
<returns>
true if the handle value is invalid; otherwise, false.
</returns>
<PermissionSet><IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode"/></PermissionSet>
</member>
<member name="M:MonoLibUsb.MonoUsbDeviceHandle.#ctor(MonoLibUsb.Profile.MonoUsbProfileHandle)">
<summary>Open a device handle from <paramref name="profileHandle"/>.</summary>
<remarks>
<para>A handle allows you to perform I/O on the device in question.</para>
<para>To close a device handle call its <see cref="M:System.Runtime.InteropServices.SafeHandle.Close"/> method.</para>
<para>This is a non-blocking function; no requests are sent over the bus.</para>
<note title="Libusb-1.0 API Note:" type="cpp">The <see cref="M:MonoLibUsb.MonoUsbDeviceHandle.#ctor(MonoLibUsb.Profile.MonoUsbProfileHandle)"/> constructor is roughly equivalent to <a href="http://libusb.sourceforge.net/api-1.0/group__dev.html#ga8163100afdf933fabed0db7fa81c89d1">libusb_open()</a>.</note>
</remarks>
<param name="profileHandle">A device profile handle.</param>
</member>
<member name="M:MonoLibUsb.MonoUsbDeviceHandle.ReleaseHandle">
<summary>
Closes the <see cref="T:MonoLibUsb.MonoUsbDeviceHandle"/>.
</summary>
<returns>
true if the <see cref="T:MonoLibUsb.MonoUsbDeviceHandle"/> is released successfully; otherwise, in the event of a catastrophic failure, false. In this case, it generates a ReleaseHandleFailed Managed Debugging Assistant.
</returns>
</member>
<member name="M:MonoLibUsb.MonoUsbDeviceHandle.Close">
<summary>
Closes the <see cref="T:MonoLibUsb.MonoUsbDeviceHandle"/> reference. When all references are no longer is use, the device
is closed in the <see cref="M:MonoLibUsb.MonoUsbDeviceHandle.ReleaseHandle"/> finalizer.
</summary>
<remarks>
<note title="Libusb-1.0 API Note:" type="cpp">The <see cref="M:MonoLibUsb.MonoUsbDeviceHandle.Close"/> method is roughly equivalent to <a href="http://libusb.sourceforge.net/api-1.0/group__dev.html#ga779bc4f1316bdb0ac383bddbd538620e">libusb_close()</a>.</note>
</remarks>
</member>
<member name="P:MonoLibUsb.MonoUsbDeviceHandle.LastErrorString">
<summary>
If the device handle is <see cref="P:LibUsbDotNet.Main.SafeContextHandle.IsInvalid"/>, gets a descriptive string for the <see cref="P:MonoLibUsb.MonoUsbDeviceHandle.LastErrorCode"/>.
</summary>
</member>
<member name="P:MonoLibUsb.MonoUsbDeviceHandle.LastErrorCode">
<summary>
If the device handle is <see cref="P:LibUsbDotNet.Main.SafeContextHandle.IsInvalid"/>, gets the <see cref="T:MonoLibUsb.MonoUsbError"/> status code indicating the reason.
</summary>
</member>
<member name="T:LibUsbDotNet.Main.UsbTransfer">
<summary>
Base class for async transfer context.
</summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mIsoPacketSize">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mOriginalCount">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mOriginalOffset">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mTimeout">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mHasWaitBeenCalled">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mTransferLOCK">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mTransferCancelEvent">
<summary></summary>
</member>
<member name="F:LibUsbDotNet.Main.UsbTransfer.mTransferCompleteEvent">
<summary></summary>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.#ctor(LibUsbDotNet.Main.UsbEndpointBase)">
<summary></summary>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Dispose">
<summary>
Cancels any pending transfer and frees resources.
</summary>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Cancel">
<summary>
Cancels a pending transfer that was previously submitted with <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/>.
</summary>
<returns></returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Submit">
<summary>
Submits the transfer.
</summary>
<remarks>
This functions submits the USB transfer and return immediately.
</remarks>
<returns>
<see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/> if the submit succeeds,
otherwise one of the other <see cref="T:LibUsbDotNet.Main.ErrorCode"/> codes.
</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Wait(System.Int32@,System.Boolean)">
<summary>
Wait for the transfer to complete, timeout, or get cancelled.
</summary>
<param name="transferredCount">The number of bytes transferred on <see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/>.</param>
<param name="cancel">If true, the transfer is cancelled if it does not complete within the time specified in <see cref="T:System.Threading.Timeout"/>.</param>
<returns><see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/> if the transfer completes successfully, otherwise one of the other <see cref="T:LibUsbDotNet.Main.ErrorCode"/> codes.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Wait(System.Int32@)">
<summary>
Wait for the transfer to complete, timeout, or get cancelled.
</summary>
<param name="transferredCount">The number of bytes transferred on <see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/>.</param>
<returns><see cref="F:LibUsbDotNet.Main.ErrorCode.Success"/> if the transfer completes successfully, otherwise one of the other <see cref="T:LibUsbDotNet.Main.ErrorCode"/> codes.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Fill(System.Object,System.Int32,System.Int32,System.Int32)">
<summary>
Fills the transfer with the data to <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/>.
</summary>
<param name="buffer">The buffer; See <see cref="T:LibUsbDotNet.Main.PinnedHandle"/> for more details.</param>
<param name="offset">The offset on the buffer where the transfer should read/write.</param>
<param name="count">The number of bytes to transfer.</param>
<param name="timeout">Time (milliseconds) to wait before the transfer times out.</param>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Fill(System.Object,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Fills the transfer with the data to <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/> an isochronous transfer.
</summary>
<param name="buffer">The buffer; See <see cref="T:LibUsbDotNet.Main.PinnedHandle"/> for more details.</param>
<param name="offset">The offset on the buffer where the transfer should read/write.</param>
<param name="count">The number of bytes to transfer.</param>
<param name="timeout">Time (milliseconds) to wait before the transfer times out.</param>
<param name="isoPacketSize">Size of each isochronous packet.</param>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Fill(System.IntPtr,System.Int32,System.Int32,System.Int32)">
<summary>
Fills the transfer with the data to <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/>.
</summary>
<param name="buffer">The buffer.</param>
<param name="offset">The offset on the buffer where the transfer should read/write.</param>
<param name="count">The number of bytes to transfer.</param>
<param name="timeout">Time (milliseconds) to wait before the transfer times out.</param>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Fill(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)">
<summary>
Fills the transfer with the data to <see cref="M:LibUsbDotNet.Main.UsbTransfer.Submit"/> an isochronous transfer.
</summary>
<param name="buffer">The buffer.</param>
<param name="offset">The offset on the buffer where the transfer should read/write.</param>
<param name="count">The number of bytes to transfer.</param>
<param name="timeout">Time (milliseconds) to wait before the transfer times out.</param>
<param name="isoPacketSize">Size of each isochronous packet.</param>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.IncrementTransfer(System.Int32)">
<summary>
Increments the internal counters to the next transfer batch (for transfers greater than <see cref="F:LibUsbDotNet.Main.UsbEndpointBase.MaxReadWrite"/>)
</summary>
<param name="amount">This will usually be the total transferred on the previous batch.</param>
<returns>True if the buffer still has data available and internal counters were successfully incremented.</returns>
</member>
<member name="M:LibUsbDotNet.Main.UsbTransfer.Reset">
<summary>
Resets the transfer to its orignal state.
</summary>
<remarks>
Prepares a <see cref="T:LibUsbDotNet.Main.UsbTransfer"/> to be resubmitted.
</remarks>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.EndpointBase">
<summary>
Returns the <see cref="T:LibUsbDotNet.UsbEndpointReader"/> or <see cref="T:LibUsbDotNet.UsbEndpointWriter"/> this transfer context is associated with.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.RequestCount">
<summary>
Number of bytes that will be requested for the next transfer.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.NextBufPtr">
<summary></summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.IsCancelled">
<summary>
True if the transfer has been cacelled with <see cref="M:LibUsbDotNet.Main.UsbTransfer.Cancel"/>.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.CancelWaitHandle">
<summary>
Gets the <see cref="T:System.Threading.WaitHandle"/> for the cancel event.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.IsoPacketSize">
<summary>
Gets the size of each isochronous packet.
</summary>
<remarks>
To change the packet size see <see cref="M:LibUsbDotNet.Main.UsbTransfer.Fill(System.IntPtr,System.Int32,System.Int32,System.Int32,System.Int32)"/>
</remarks>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.Transmitted">
<summary>
Totoal number of bytes transferred.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.Remaining">
<summary>
Remaining bytes in the transfer data buffer.
</summary>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.IsCompleted">
<summary>
Gets an indication whether the asynchronous operation has completed.
</summary>
<returns>
true if the operation is complete; otherwise, false.
</returns>
<filterpriority>2</filterpriority>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.AsyncWaitHandle">
<summary>
Gets a <see cref="T:System.Threading.WaitHandle"/> that is used to wait for an asynchronous operation to complete.
</summary>
<returns>
A <see cref="T:System.Threading.WaitHandle"/> that is used to wait for an asynchronous operation to complete.
</returns>
<filterpriority>2</filterpriority>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.AsyncState">
<summary>
Gets a user-defined object that qualifies or contains information about an asynchronous operation.
</summary>
<returns>
A user-defined object that qualifies or contains information about an asynchronous operation.
</returns>
<filterpriority>2</filterpriority>
</member>
<member name="P:LibUsbDotNet.Main.UsbTransfer.CompletedSynchronously">
<summary>
Gets an indication of whether the asynchronous operation completed synchronously.
</summary>
<returns>
true if the asynchronous operation completed synchronously; otherwise, false.
</returns>
<filterpriority>2</filterpriority>
</member>
<member name="F:MonoLibUsb.Transfer.Internal.libusb_control_setup.bmRequestType">
Request type. Bits 0:4 determine recipient, see
\ref libusb_request_recipient. Bits 5:6 determine type, see
\ref libusb_request_type. Bit 7 determines data transfer direction, see
\ref libusb_endpoint_direction.
</member>
<member name="F:MonoLibUsb.Transfer.Internal.libusb_control_setup.bRequest">
Request. If the type bits of bmRequestType are equal to
\ref libusb_request_type::LIBUSB_REQUEST_TYPE_STANDARD
"LIBUSB_REQUEST_TYPE_STANDARD" then this field refers to
\ref libusb_standard_request. For other cases, use of this field is
application-specific.
</member>
<member name="F:MonoLibUsb.Transfer.Internal.libusb_control_setup.wValue">
Value. Varies according to request
</member>
<member name="F:MonoLibUsb.Transfer.Internal.libusb_control_setup.wIndex">
Index. Varies according to request, typically used to pass an index
or offset
</member>
<member name="F:MonoLibUsb.Transfer.Internal.libusb_control_setup.wLength">
Number of bytes to transfer
</member>
<member name="T:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo">
<summary> Describes the storage volume that caused the notification.
See <see cref="T:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo"/> for more information.
</summary>
</member>
<member name="T:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo">
<summary> Common interface describing a storage volume arrival or removal notification.
</summary>
</member>
<member name="M:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo"/>.
</returns>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo.Letter">
<summary>
Under windows, gets the letter representation of the unitmask.
Under linux, gets the full path of the device name.
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo.ChangeAffectsMediaInDrive">
<summary>
If true, change affects media in drive. If false, change affects physical device or drive.
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo.IsNetworkVolume">
<summary>
If True, the indicated logical volume is a network volume
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo.Flags">
<summary>
Raw DevBroadcastVolume flags.
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.IVolumeNotifyInfo.Unitmask">
<summary>
Gets the bit unit mask of the device. IE (bit 0 = A:, bit 1 = B:, etc..)
</summary>
</member>
<member name="M:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo"/>.
</returns>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo.Letter">
<summary>
Gets the letter representation of the unitmask.
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo.ChangeAffectsMediaInDrive">
<summary>
If true, change affects media in drive. If false, change affects physical device or drive.
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo.IsNetworkVolume">
<summary>
If True, the indicated logical volume is a network volume
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo.Flags">
<summary>
Raw DevBroadcastVolume flags.
</summary>
</member>
<member name="P:LibUsbDotNet.DeviceNotify.Info.VolumeNotifyInfo.Unitmask">
<summary>
Gets the bit unit mask of the device. IE (bit 0 = A:, bit 1 = B:, etc..)
</summary>
</member>
<member name="T:LibUsbDotNet.DeviceNotify.DeviceType">
<summary>
Type of notification device.
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.Oem">
<summary>
oem-defined device type.
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.DevNode">
<summary>
devnode number.
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.Volume">
<summary>
logical volume.
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.Port">
<summary>
serial, parallel.
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.Net">
<summary>
network resource.
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.DeviceInterface">
<summary>
device interface class
</summary>
</member>
<member name="F:LibUsbDotNet.DeviceNotify.DeviceType.Handle">
<summary>
file system handle.
</summary>
</member>
<member name="T:LibUsbDotNet.Descriptors.UsbEndpointDescriptor">
<summary> Usb Endpoint Descriptor
</summary>
<remarks> This is the actual descriptor as described in the USB 2.0 Specifications.
</remarks>
</member>
<member name="T:LibUsbDotNet.Descriptors.UsbDescriptor">
<summary> Base class for all usb descriptors structures.
</summary>
<remarks> This is the actual descriptor as described in the USB 2.0 Specifications.
</remarks>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbDescriptor.ToStringParamValueSeperator">
<summary>
String value used to seperate the name/value pairs for all ToString overloads of the descriptor classes.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbDescriptor.ToStringFieldSeperator">
<summary>
String value used to seperate the name/value groups for all ToString overloads of the descriptor classes.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbDescriptor.Size">
<summary>
Total size of this structure in bytes.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbDescriptor.Length">
<summary>
Length of structure reported by the associated usb device.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbDescriptor.DescriptorType">
<summary>
Type of structure reported by the associated usb device.
</summary>
</member>
<member name="M:LibUsbDotNet.Descriptors.UsbDescriptor.ToString">
<summary>
String representation of the UsbDescriptor class.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.Size">
<summary>
Total size of this structure in bytes.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.EndpointID">
<summary>
Endpoint Address
Bits 0..3b Endpoint Number.
Bits 4..6b Reserved. Set to Zero
Bits 7 Direction 0 = Out, 1 = In (Ignored for Control Endpoints)
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.Attributes">
<summary>
Bits 0..1 Transfer Type
00 = Control
01 = Isochronous
10 = Bulk
11 = Interrupt
Bits 2..7 are reserved. If Isochronous endpoint,
Bits 3..2 = Synchronisation Type (Iso Mode)
00 = No Synchonisation
01 = Asynchronous
10 = Adaptive
11 = Synchronous
Bits 5..4 = Usage Type (Iso Mode)
00 = Data Endpoint
01 = Feedback Endpoint
10 = Explicit Feedback Data Endpoint
11 = Reserved
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.MaxPacketSize">
<summary>
Maximum Packet Size this endpoint is capable of sending or receiving
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.Interval">
<summary>
Interval for polling endpoint data transfers. Value in frame counts. Ignored for Bulk and Control Endpoints. Isochronous must equal 1 and field may range from 1 to 255 for interrupt endpoints.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.Refresh">
<summary>
Audio endpoint specific.
</summary>
</member>
<member name="F:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.SynchAddress">
<summary>
Audio endpoint specific.
</summary>
</member>
<member name="M:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.ToString">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.Descriptors.UsbEndpointDescriptor"/>.
</summary>
<returns>
A <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.Descriptors.UsbEndpointDescriptor"/>.
</returns>
</member>
<member name="M:LibUsbDotNet.Descriptors.UsbEndpointDescriptor.ToString(System.String,System.String,System.String)">
<summary>
Returns a <see cref="T:System.String"/> that represents the current <see cref="T:LibUsbDotNet.Descriptors.UsbEndpointDescriptor"/>.
</summary>
<param name="prefixSeperator">The field prefix string.</param>
<param name="entitySperator">The field/value seperator string.</param>
<param name="suffixSeperator">The value suffix string.</param>
<returns>A formatted representation of the <see cref="T:LibUsbDotNet.Descriptors.UsbEndpointDescriptor"/>.</returns>
</member>
<member name="T:LibUsbDotNet.WinUsb.PipePolicies">
<summary> Endpoint specific policies. <see cref="M:LibUsbDotNet.WinUsb.WinUsbDevice.EndpointPolicies(LibUsbDotNet.Main.ReadEndpointID)"/>.