最佳答案
我正在编写一个 WinForms 应用程序,传输数据到一个 USB HID 类设备。我的应用程序使用优秀的通用 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();
}
值得一提的是,GetInputReportViaInterrupTransfer ()的声明如下所示:
internal async Task<int> GetInputReportViaInterruptTransfer()
不幸的是,我不太熟悉中的新的异步/等待技术的工作原理。NET 4.5.我之前阅读了一些关于 wait 关键字的内容,它给我的印象是,在 RequestToGetInputReport ()内部对 GetInputReportViaInterrupTransfer ()的调用会等待(也许真的会等待?)但是对 RequestToGetInputReport ()本身的调用似乎并没有等待,因为我似乎马上就要重新进入 while 循环了?
有人能解释一下我看到的行为吗?