Castle.DynamicProxy.AllMethodsHook
namespace Castle.DynamicProxy
{
public class AllMethodsHook : IProxyGenerationHook
{
protected static readonly ICollection<Type> SkippedTypes;
public virtual bool ShouldInterceptMethod(Type type, MethodInfo methodInfo);
public virtual void NonProxyableMemberNotification(Type type, MemberInfo memberInfo);
public virtual void MethodsInspected();
public AllMethodsHook();
}
}