向抽象方法添加方面?
PostSharp 给出此错误:
PostSharp:无法应用 OnMethodInspiration 方面 (...) 与 摘要或目标位点编织 外部方法“...”。考虑 从此方法中排除该方面 或使用调用站点编织。
建议的调用站点编织对我来说不是合适的解决方案。有没有办法为抽象方法添加前/后处理?
PostSharp gives this error:
PostSharp: Cannot apply an
OnMethodInvocation aspect (...) with
target-site weaving on the abstract or
external method "...". Consider
excluding the aspect from this method
or use call-site weaving.
Suggested call-site weaving is not an appropriate solution for me. Is there any way to add pre/post processing for the abstract method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议你使用方面继承。该方面将自动添加到实现抽象方法的所有方法中。
请参阅 MulticastAttribute.AttributeInheritance 或 MulticastAttributeUsageAttribute.Inheritance,或 官方文档了解详细信息。
I suggest you use aspect inheritance. The aspect will be automatically added to all methods implementing the abstract method.
See MulticastAttribute.AttributeInheritance or MulticastAttributeUsageAttribute.Inheritance, or official documentation for details.
这当然是不可能的——如何使用抽象方法(没有任何代码的方法)执行目标站点编织?当然,您可以使用实现该方法的所有派生类型来执行目标站点编织,但这需要您控制这些类型。或者,您可以使该方法成为非抽象和虚拟的,并需要派生类型来调用基本实现。
This is of course imposible - how would you perform target-site weaving with an abstract method, a method without any code? You can of course perform target-site weaving with all derived types implementing the method, but this requires that you control this types. Or you could make the method non-abstract and virtual and require derived types to call the base implementation.