如何广泛应用 Postsharp 方面解决方案(命名空间中的所有类)

发布于 2024-12-02 12:10:14 字数 193 浏览 2 评论 0原文

我正在尝试修改 Postsharp 附带的示例跟踪应用程序,以便将跟踪应用于我的命名空间中的所有类,而无需显式地将 [QuickTrace] 放在每个类的顶部。我已附上屏幕截图。我做错了什么?右键单击打开/查看图像以获得更大的图片。谢谢

在此处输入图像描述

I am trying to modify the sample trace app that ships with Postsharp so that the trace is applied to all classes in my namespace without explicitly putting the [QuickTrace] on top of each class. I have attached a screenshot. What am I doing wrong ? Right click open/view image for bigger picture. thank you

enter image description here

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

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

发布评论

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

评论(1

小耗子 2024-12-09 12:10:14

你这样做是错误的。您试图将方面分配给 mscorelib,它将包装对驻留在 mscorelib (不是您当前的应用程序)中的任何方法的调用,但您否定了这一点,因为您告诉它仅适用于跟踪命名空间。

只需使用

[assembly: QuickTrace()]

“完成”即可。在您方面,添加以下内容

[QuickTrace(AttributeExclude=True)]
[Serializable]
public QuickTrace : OnMethodBoundaryAspect
{
  //..Aspect code here
}

You're doing it incorrectly. You're trying to assign the aspects to the mscorelib which will wrap calls to any methods that reside in the mscorelib (not your current app) but you're negating that with the fact tyhat you're telling it to apply to methods only in the Trace namespace.

Just use

[assembly: QuickTrace()]

Done. On your aspect, add the following

[QuickTrace(AttributeExclude=True)]
[Serializable]
public QuickTrace : OnMethodBoundaryAspect
{
  //..Aspect code here
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文