gpt4 book ai didi

C# 和 Caliburn - RescueAttribute 和协程

转载 作者:行者123 更新时间:2023-11-30 12:17:10 25 4
gpt4 key购买 nike

我想我发现了 RescueAttribute 损坏的情况。也可能我没有正确使用协程。

我有一个像这样的 ViewModel:

[Rescue("Rescue")]
class MyViewModel
{
//... left out some bus-logic code here ...

public void Login()
{
yield return Show.Busy();

//the following line will also cause the problem, just like AsyncResult
//yield return Show.MessageBox("Test");

yield return new AsyncResult(() => _server.Login());

//throw new Exception("Aww, snap!");

yield return Show.NotBusy();
}

public void Rescue(Exception exc)
{
//Show a messagebox or something
}
}

AsyncResult 是这样实现的:

using Exec = Caliburn.PresentationFramework.Invocation.Execute;

public class AsyncResult : IResult
{
private readonly Action _function;

public AsyncResult(Action function)
{
_function = function;
}

public void Execute(ResultExecutionContext context)
{
Exec.OnBackgroundThread(delegate
{
try
{
_function();
}
catch (Exception exc)
{
Exec.OnUIThread(() => Completed(this, new ResultCompletionEventArgs { Error = exc, WasCancelled = true }));
return;
}
Exec.OnUIThread(() => Completed(this, new ResultCompletionEventArgs()));
});
}

public event EventHandler<ResultCompletionEventArgs> Completed = delegate { };
}

如果我在上面的 ViewModel 中取消注释异常,Rescue 将无法处理异常。

这是 Caliburn 中的错误,还是 AsyncResult 实现错误?

如果您在 yield 之前放置一个异常以返回 AsyncResult,Rescue 就可以正常工作。此外,如果在异步线程 上抛出异常,rescue 仍然有效!

编辑:您也可以使用 Show.MessageBox 而不是 AsyncResult 来重现同样的问题。

最佳答案

这似乎是一个合法的错误。我在 Caliburn 跟踪器中为此添加了一个问题:http://caliburn.codeplex.com/workitem/7636

编辑:问题已解决
参见:http://caliburn.codeplex.com/Thread/View.aspx?ThreadId=234229

关于C# 和 Caliburn - RescueAttribute 和协程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4148760/

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