如何使用 PostSharp 创建切入点来拦截类中的所有方法?
我尝试过使用 AttributeTargetTypes,但它不起作用。我缺少什么?
I've tried using AttributeTargetTypes, but it just won't work. What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将切面应用于类的所有方法的最简单方法是使用切面自定义属性来注释该类。当自定义属性应用于程序集级别时,AttributeTargetTypes 也应该起作用,至少如果该类型是当前程序集的一部分的话。
The easiest way to apply an aspect to all methods of a class is to annotate this class with the aspect custom attribute. AttributeTargetTypes, when the custom attribute is applied on assembly-level, should work also, at least if the type is a part of the current assembly.