1# UsbCtrlTransferParams 2 3 4## 概述 5 6USB设备控制传输信息。 7 8**起始版本:** 5.0 9 10**相关模块:**[HdiUsb](_hdi_usb.md) 11 12 13## 汇总 14 15 16### Public 属性 17 18| 名称 | 描述 | 19| -------- | -------- | 20| int [requestType](#requesttype) | 请求类型。 | 21| int [requestCmd](#requestcmd) | 请求命令。 | 22| int [value](#value) | 请求值。 | 23| int [index](#index) | 索引值。 | 24| int [length](#length) | 数据长度。 | 25| int [timeout](#timeout) | 超时时间。 | 26 27 28## 类成员变量说明 29 30 31### index 32 33``` 34int UsbCtrlTransferParams::index 35``` 36 37**描述** 38 39索引值。 40 41 42### length 43 44``` 45int UsbCtrlTransferParams::length 46``` 47 48**描述** 49 50数据长度。 51 52 53### requestCmd 54 55``` 56int UsbCtrlTransferParams::requestCmd 57``` 58 59**描述** 60 61请求命令。 62 63 64### requestType 65 66``` 67int UsbCtrlTransferParams::requestType 68``` 69 70**描述** 71 72请求类型。 73 74 75### timeout 76 77``` 78int UsbCtrlTransferParams::timeout 79``` 80 81**描述** 82 83超时时间。 84 85 86### value 87 88``` 89int UsbCtrlTransferParams::value 90``` 91 92**描述** 93 94请求值。 95