Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

UsbBulkInEndpointDescriptor class

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.

Syntax


/* For information about creating or accessing this object, see Remarks. */

Attributes

[DualApiPartition()]
[MarshalingBehavior(Agile)]
[Version(0x06030000)]

Members

The UsbBulkInEndpointDescriptor class has these types of members:

Methods

The UsbBulkInEndpointDescriptor class inherits methods from the Object class (C#/VB/C++).

Properties

The UsbBulkInEndpointDescriptor class has these properties.

PropertyAccess typeDescription

EndpointNumber

Read-onlyGets the USB endpoint number of the bulk IN endpoint.

MaxPacketSize

Read-onlyGets the maximum number of bytes that can be sent to or received from this endpoint, in a single packet.

Pipe

Read-onlyGets the object that represents the pipe that the host opens to communicate with the bulk IN endpoint.

 

Remarks

JavaScript (Usage)

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

Requirements

Minimum supported client

Windows 8.1 [Windows Store apps, desktop apps]

Minimum supported server

Windows Server 2012 R2 [Windows Store apps, desktop apps]

Namespace

Windows.Devices.Usb
Windows::Devices::Usb [C++]

Metadata

Windows.winmd

See also

Object

 

 

Show:
© 2014 Microsoft. All rights reserved.