使用 Autofac 和 DynamicProxy2 的 AOP

发布于 2024-10-14 02:59:51 字数 269 浏览 2 评论 0原文

我使用 Autofac 和 DynamicProxy2 来拦截我的类,如下所示

builder.RegisterType<Calculator>().As<ICalculator>().EnableInterfaceInterceptors()
                .InterceptedBy(typeof (CallLogger));

这将拦截给定接口上的所有方法。

有没有办法只拦截接口的特定方法?

I'm using Autofac with DynamicProxy2 to intercept my classes like this

builder.RegisterType<Calculator>().As<ICalculator>().EnableInterfaceInterceptors()
                .InterceptedBy(typeof (CallLogger));

This will intercept all methods on given interface.

Is there any way to intercept only particular methods of the interface ?

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

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

发布评论

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

评论(1

彩虹直至黑白 2024-10-21 02:59:51

我能想到的方法有几种,而且可能还有更多。

您可以创建一个自定义属性,例如 [LogCall][DoNotLogCall](选择加入或选择退出),并将其应用于要拦截的方法,然后检查是否存在CallLogger 内的属性。

或者,您可以使用应记录的方法的名称(或查找规则)来配置 CallLogger。

There are a couple of ways I can think of, and there are probably more out there.

You could create a custom attribute like [LogCall] or [DoNotLogCall] (opt in or opt out) and apply that to the methods to intercept, then check for the presence of the attribute inside CallLogger.

Or, you could configure the CallLogger with the names of (or rules to find) the methods that should be logged.

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