3

这是最小的可能场景,我能够准备:

  • 此代码连接到 imap.gmail.com
  • 读取初始服务器问候语(使用 Read 方法)
  • 发送 NOOP 命令(NO 操作)
  • 读取 NOOP 命令响应(再次使用 Read 方法)

问题是第二个 Read 挂起。如果使用“await ReadAsync”,它会完美运行。

当我中断程序时,我可以看到调用堆栈从 task.Wait() 开始并在 System.Threading.Monitor.Wait() 结束。

如果我一步一步调试这个,它不会挂起。我必须承认它看起来像一个 .NET 框架错误,但也许我遗漏了一些明显的东西。

private static async Task<byte[]> ReadAsync(StreamSocket socket)
{
    // all responses are smaller that 1024
    IBuffer buffer = new byte[1024].AsBuffer();
    await socket.InputStream.ReadAsync(
            buffer, buffer.Capacity, InputStreamOptions.Partial);
    return buffer.ToArray();
}

private static byte[] Read(StreamSocket socket)
{
    Task<byte[]> task = ReadAsync(socket);
    task.Wait();
    return task.Result;
}

private async void Button_Click(object sender, RoutedEventArgs e)
{
    Encoding encoding = Encoding.GetEncoding("Windows-1250");

    using (StreamSocket socket = new StreamSocket())
    {
        await socket.ConnectAsync(
            new HostName("imap.gmail.com"), "993", SocketProtectionLevel.Ssl);

        // notice we are using Wait() version here without any problems:
        byte[] serverGreetings = Read(socket);              

        await socket.OutputStream.WriteAsync(
            encoding.GetBytes("A0001 NOOP\r\n").AsBuffer());
        await socket.OutputStream.FlushAsync();

        //byte[] noopResponse = await ReadAsync(socket);    // works
        byte[] noopResponse = Read(socket);                 // hangs
    }
}
4

1 回答 1

4

我在我最近的 MSDN 文章以及我的博客中解释了这种死锁的原因。

简短的回答是你不应该打电话WaitResultasync代码上。你应该await一直使用。

于 2013-05-08T11:41:03.847 回答