UsbControlRequestType.AsByte 属性

定义

获取或设置 bmRequestType 值作为字节。

public:
 property byte AsByte { byte get(); void set(byte value); };
byte AsByte();

void AsByte(byte value);
public byte AsByte { get; set; }
var byte = usbControlRequestType.asByte;
usbControlRequestType.asByte = byte;
Public Property AsByte As Byte

属性值

Byte

byte

字节中的整个 bmRequestType 值。

注解

如果设备的硬件规范定义了要作为字节发送的 bmRequestType 字段值,则可以使用 AsByte 属性。 否则,必须分别使用 ControlTransferTypeDirection 和 Recipient 属性分别获取或设置 bmRequestType 值,例如 direction、type 和 recipient

适用于