我有这个代码:
container.Register(
Component.For(typeof(MyServiceInterceptor<>)),
Component.For<IMyService<string>, MyServiceImpl<string>>()
.Interceptors(typeof(MyServiceInterceptor<>))
.Anywhere
)
Windsor 为 MyServiceImpl<> 生成代理类。但我只想拦截 IMyService<> 方法。怎么做?