当应用程序退出时,如何使用 PostSharp 执行代码块?
目前,我正在检查 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你不应该使用 PostSharp 来做到这一点。
您可以使用 System.AppDomain 的一些功能来检测应用程序域是否正在退出:
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: