Skip to content

Latest commit

 

History

History
31 lines (19 loc) · 815 Bytes

usbbulkinendpointdescriptor.md

File metadata and controls

31 lines (19 loc) · 815 Bytes
-api-id -api-type
T:Windows.Devices.Usb.UsbBulkInEndpointDescriptor
winrt class

Windows.Devices.Usb.UsbBulkInEndpointDescriptor

-description

The endpoint descriptor for a USB bulk IN endpoint. The descriptor specifies the endpoint type, direction, number and also the maximum number of bytes that can be read from the endpoint, in a single transfer.

-remarks

JavaScript (Usage)

var descriptorBulkInEp = device.defaultInterface.descriptors.getAt(1);
var usbEndpointDescriptor = Windows.Devices.Usb.UsbEndpointDescriptor.parse(descriptorBulkInEp);
var usbBulkInEndpointDescriptor = usbEndpointDescriptor.asBulkInEndpointDescriptor();

-examples

-see-also