静态方法可以用Castle DynamicProxy拦截吗?

Can static methods be intercepted with Castle DynamicProxy?

Castle DynamicProxy可以拦截静态方法吗?

如果是,怎么做?

不,Castle DynamicProxy 只能代理您可以手动为其编写代理的类型和成员,它使用运行时代码生成并且必须遵守 CLR 的约束。

DynamicProxy 文档描述了two general forms of proxy objects it supports、继承和基于组合。