使用 Autofac 和 DynamicProxy2 的 AOP
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我能想到的方法有几种,而且可能还有更多。
您可以创建一个自定义属性,例如
[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 insideCallLogger
.Or, you could configure the
CallLogger
with the names of (or rules to find) the methods that should be logged.