main
 1using System.Reflection;
 2
 3namespace Gorilla.Commons.Infrastructure.Proxies
 4{
 5    public interface Invocation
 6    {
 7        void proceed();
 8        object[] arguments { get; }
 9        MethodInfo method { get; }
10        object return_value { get; set; }
11    }
12}