如何广泛应用 Postsharp 方面解决方案(命名空间中的所有类)
我正在尝试修改 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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你这样做是错误的。您试图将方面分配给 mscorelib,它将包装对驻留在 mscorelib (不是您当前的应用程序)中的任何方法的调用,但您否定了这一点,因为您告诉它仅适用于跟踪命名空间。
只需使用
“完成”即可。在您方面,添加以下内容
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
Done. On your aspect, add the following