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 ?