工作流基础:在Asp .net中获取终止原因
有没有办法获取插入到 ASP .NET 应用程序内的 TerminateWorkflow 活动中的终止原因?例如,以下内容不起作用。
app.Completed =(e) =>
{
HttpContext.Current.Response.Write("Exception:" + o.Reason.GetType().FullName + o.Reason.Message);
syncEvent.Set();
};
有人有什么想法吗?
Is there any way to get the Termination Reason that is inserted into the TerminateWorkflow activity inside an ASP .NET application?. For example the following doesnt works.
app.Completed =(e) =>
{
HttpContext.Current.Response.Write("Exception:" + o.Reason.GetType().FullName + o.Reason.Message);
syncEvent.Set();
};
Does anyone has any ideas ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试改为处理 app.Aborted 事件。
Try handling the app.Aborted event instead.