2

我有以下代码试图捕获由断开连接引起的异常:

try
{
    DataReaderLoadOperation op = dataReader.LoadAsync((uint)readBuffer.MaxLength());
    await op;  //  <-- Debugger show COMException here
    ReceiveCallback(op, op.Status);
}
catch (COMException e)
{
    Logger.Info("{0} disconnected. (Waiting)", this);
    Logger.Debug("{0} exception = {1}", this, e);
    OnDisconnected();
}

为什么我的代码没有捕捉到它?这是异常的转储:

System.Runtime.InteropServices.COMException occurred   
  HResult=-2147014842   
  Message=An existing connection was forcibly closed by the remote host. (Exception from HRESULT: 0x80072746)   
  Source=mscorlib   
  ErrorCode=-2147014842   
  StackTrace:
       at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
       at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
       at Crystal.IO.Network.SocketClient.<WaitForIncoming>d__4.MoveNext() in d:\Crystal\library\IO\Network\SocketClient.cs:line 479   
  InnerException:
4

1 回答 1

2

更改您的调试器设置以不中断第一次机会异常。

于 2012-05-06T21:50:09.930 回答