UsbSetupPacket.RequestType Property
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.
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.