UsbControlRequestType.AsByte 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置 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 属性。 否则,必须分别使用 ControlTransferType、Direction 和 Recipient 属性分别获取或设置 bmRequestType 值,例如 direction、type 和 recipient。