工作流基础:在Asp .net中获取终止原因

发布于 2024-12-02 07:07:47 字数 313 浏览 1 评论 0原文

有没有办法获取插入到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梓梦 2024-12-09 07:07:47

尝试改为处理 app.Aborted 事件。

Try handling the app.Aborted event instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文