当应用程序退出时,如何使用 PostSharp 执行代码块?

发布于 2024-08-19 13:46:42 字数 417 浏览 7 评论 0原文

目前,我正在检查 OnMethodBoundaryAspect.OnExit 方法中的方法名称:

[Serializable]
public class TimerAttribute : OnMethodBoundaryAspect
{
    public override void OnExit(MethodExecutionEventArgs eventArgs)
    {
        if(eventArgs.Method.DeclaringType.Name == "Program" && eventArgs.Method.Name == "Main")
            //do things
    }
}

显然,这很丑陋并且感觉很混乱。是否有更可靠的方法来使用 PostSharp 检测应用程序退出?

Presently, I am checking the method name in the OnMethodBoundaryAspect.OnExit method:

[Serializable]
public class TimerAttribute : OnMethodBoundaryAspect
{
    public override void OnExit(MethodExecutionEventArgs eventArgs)
    {
        if(eventArgs.Method.DeclaringType.Name == "Program" && eventArgs.Method.Name == "Main")
            //do things
    }
}

Obviously, this is ugly and feels kludgy. Is there a more robust way to detect application exit with PostSharp?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

り繁华旳梦境 2024-08-26 13:46:42

我认为你不应该使用 PostSharp 来做到这一点。

您可以使用 System.AppDomain 的一些功能来检测应用程序域是否正在退出:

  • AppDomain.IsFinalizingForUnload()
  • AppDomain.ProcessExit
  • AppDomain.DomainUnload

I don't think you should use PostSharp to do that.

You can detect whether the application domain is exiting by using some features of System.AppDomain:

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