向抽象方法添加方面?

发布于 2024-08-04 23:25:16 字数 211 浏览 5 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

猫瑾少女 2024-08-11 23:25:16

我建议你使用方面继承。该方面将自动添加到实现抽象方法的所有方法中。

请参阅 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.

没企图 2024-08-11 23:25:16

这当然是不可能的——如何使用抽象方法(没有任何代码的方法)执行目标站点编织?当然,您可以使用实现该方法的所有派生类型来执行目标站点编织,但这需要您控制这些类型。或者,您可以使该方法成为非抽象和虚拟的,并需要派生类型来调用基本实现。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文