blob: 8530050357461a89a1b749641cf5dbc58ad7751c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Reflection;
namespace jive.infrastructure.proxies
{
public interface Invocation
{
void proceed();
object[] arguments { get; }
MethodInfo method { get; }
object return_value { get; set; }
}
}
|