我正在开发一个 Windows 8 应用程序 (C++)。我使用了 Windows 8 示例集合中的 httpclient 类。
inline void CheckHResult(HRESULT hResult)
{
if (hResult == E_ABORT)
{
concurrency::cancel_current_task();
}
else if (FAILED(hResult))
{
throw Platform::Exception::CreateException(hResult);
}
}
当应用程序未连接到互联网时,此函数会引发异常。我试图像这样在下面的 lambda 中捕获异常。
return completionTask.then([this, stringCallback](tuple<HRESULT, wstring> resultTuple)
{
try
{
CheckHResult(std::get<0>(resultTuple));
}
catch(Exception^ ex)
{
}
return std::get<1>(resultTuple);
});
但它仍然显示一个未处理的异常:
First-chance exception at 0x77194B32 in Sample.exe: Microsoft C++ exception: Platform::COMException ^ at memory location 0x08C7EDF4. HRESULT:0x800C0005
If there is a handler for this exception, the program may be safely continued.
有什么我做错了吗?