UsbSetupPacket.RequestType Property

Definition

Gets or sets the bmRequestType field in the setup packet of the USB control transfer. That field is represented by a UsbControlRequestType object.

public:
 property UsbControlRequestType ^ RequestType { UsbControlRequestType ^ get(); void set(UsbControlRequestType ^ value); };
UsbControlRequestType RequestType();

void RequestType(UsbControlRequestType value);
public UsbControlRequestType RequestType { get; set; }
var usbControlRequestType = usbSetupPacket.requestType;
usbSetupPacket.requestType = usbControlRequestType;
Public Property RequestType As UsbControlRequestType

Property Value

The bmRequestType field in the setup packet. The values that are assigned to this field are described in Table 9.2 and section 9.3.1 of the Universal Serial Bus (USB) specification.

Applies to