summaryrefslogtreecommitdiff
path: root/proxies/IInvocation.cs
diff options
context:
space:
mode:
authormo k <mo@mokhan.ca>2012-05-03 12:44:39 -0600
committermo k <mo@mokhan.ca>2012-05-03 12:44:39 -0600
commit2ea2730e65af8e7849c6f36443f87e8731ffd5be (patch)
tree3b9455098690e0038d0f04754b4c34a91cd34162 /proxies/IInvocation.cs
initial checkin.main
Diffstat (limited to 'proxies/IInvocation.cs')
-rw-r--r--proxies/IInvocation.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/proxies/IInvocation.cs b/proxies/IInvocation.cs
new file mode 100644
index 0000000..a12c4a5
--- /dev/null
+++ b/proxies/IInvocation.cs
@@ -0,0 +1,12 @@
+using System.Reflection;
+
+namespace proxies
+{
+ public interface IInvocation
+ {
+ void Proceed();
+ object[] Arguments { get; }
+ MethodInfo Method { get; }
+ object ReturnValue { get; set; }
+ }
+} \ No newline at end of file