main
1using System.Collections.Generic;
2using Castle.Core.Interceptor;
3
4namespace gorilla.commons.infrastructure.thirdparty.Castle.DynamicProxy.Interceptors
5{
6 public interface MethodCallTracker<TypeToProxy> : IInterceptor
7 {
8 TypeToProxy target { get; }
9 IEnumerable<string> methods_to_intercept();
10 }
11}