我正在编写一个将数据传输到 USB HID 类设备的 WinForms 应用程序。我的应用程序使用优秀的 Generic HID 库 v6.0,可以在此处找到。简而言之,当我需要向设备写入数据时,这是被调用的代码:
private async void RequestToSendOutputReport(List<byte[]> byteArrays)
{
foreach (byte[] b in byteArrays)
{
while (condition)
{
// we'll typically execute this code many times until the condition is no longer met
Task t = SendOutputReportViaInterruptTransfer();
await t;
}
// read some data from device; we need to wait for this to return
RequestToGetInputReport();
}
}
当我的代码退出 while 循环时,我需要从设备中读取一些数据。但是,设备无法立即响应,因此我需要等待此呼叫返回,然后才能继续。由于它当前存在,RequestToGetInputReport() 声明如下:
private async void RequestToGetInputReport()
{
// lots of code prior to this
int bytesRead = await GetInputReportViaInterruptTransfer();
}
对于它的价值,GetInputReportViaInterruptTransfer() 的声明如下所示:
internal async Task<int> GetInputReportViaInterruptTransfer()
不幸的是,我对 .NET 4.5 中新的 async/await 技术的工作原理不是很熟悉。我之前读过一些关于 await 关键字的文章,这给我的印象是在 RequestToGetInputReport() 中调用 GetInputReportViaInterruptTransfer() 会等待(也许确实如此?),但它看起来不像对 RequestToGetInputReport() 的调用本身正在等待,因为我似乎几乎立即重新进入 while 循环?
谁能澄清我看到的行为?