我在 ClickOnce 部署的应用程序中依赖于 .NET 2.0 SP2(该ApplicationDeployment.CurrentDeployment.CheckForDetailedUpdate(false)
方法仅适用于 SP2)。
我想检查应用程序启动期间是否存在 SP2。我试图通过在调用仅限 SP2 的方法后捕获 MissingMethodException 来检测这一点。
/// <summary>
/// The SP2 bootstrapper does not allow HomeSite installation
/// http://msdn.microsoft.com/en-us/vstudio/bb898654.aspx
/// So we only advice the user to download .NET 2.0 SP2 manually.
/// </summary>
private void CheckDotNet2SP()
{
WaitHandle wh = new AutoResetEvent(true);
try
{
wh.WaitOne(1); //this method is .NET 2.0 SP2 only
}
//NOTE: this catch does not catch the MissingMethodException
catch (Exception) //change to catch(MissingMethodException) does not help
{
//report that .NET 2.0 SP2 is missing
}
finally
{
wh.Close();
}
}
在没有 SP2 的 .NET 2.0 上运行时,catch 中的代码永远不会执行。异常仅由AppDomain.CurrentDomain.UnhandledException
事件处理程序捕获。
MissingMethodException 怎么可能没有被捕获?我可以想象这是一种特殊情况——CLR 遇到了一个不存在的方法,并且无法以某种方式将其传递给 catch 块。我想了解这背后的原理。
有人有关于这个问题的任何资源吗?是否还有其他无法在 catch 块中捕获的异常?