gpt4 book ai didi

c# - StreamSocket.InputStreamOptions.ReadAsync 在使用 Wait() 时挂起

转载 作者:行者123 更新时间:2023-11-30 20:57:54 25 4
gpt4 key购买 nike

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

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

问题是第二次读取挂起。如果使用“等待 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
}
}

最佳答案

我解释了这个死锁的原因in my recent MSDN article以及on my blog .

简短的回答是,您不应该async 代码上调用WaitResult;你应该一直使用await

关于c# - StreamSocket.InputStreamOptions.ReadAsync 在使用 Wait() 时挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16436824/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com