如何检测InvalidOperationException类型
这是内部异常消息:
System.InvalidOperationException:ExecuteNonQuery需要一个打开的可用连接。连接的当前状态为关闭。
我需要检测这种类型的异常来处理它。
我可以知道它的HResult编号或异常代码吗?还是另一种方式?
最佳答案
此代码可能会有所帮助
try
{
//your code here...
}
catch (Exception exception) when (exception.InnerException is InvalidOperationException)
{
var exceptionMessage = "ExecuteNonQuery requires an open and available Connection";
if (exception.Message.Contains(exceptionMessage) || exception.InnerException.Message.Contains(exceptionMessage))
{
//handle it...
}
}