UsbEndpointType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines constants that indicate the type of USB endpoint: control, bulk, isochronous, or interrupt.
public enum class UsbEndpointType
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class UsbEndpointType
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum UsbEndpointType
var value = Windows.Devices.Usb.UsbEndpointType.control
Public Enum UsbEndpointType
- Inheritance
-
UsbEndpointType
- Attributes
Windows requirements
Device family |
Windows 10 (introduced in 10.0.10240.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduced in v1.0)
|
Fields
Name | Value | Description |
---|---|---|
Control | 0 | Indicates a USB control endpoint (Endpoint 0). |
Isochronous | 1 | Indicates a USB isochronous endpoint. |
Bulk | 2 | Indicates a USB bulk endpoint. |
Interrupt | 3 | Indicates a USB interrupt endpoint. |