Table of contents
IMethodInvocation API Document
Supply information about the current method invocation.
Quick Note
This interface will be replaced by IInvocation
Properties
| Name | Type | Description |
|---|---|---|
| Proxy | Object | The proxy instance. |
| InvocationTarget | Object | The target of this invocation, which usually is the instance of the class being proxy. You might change the target, but be aware of the implications. |
| Method | MethodInfo | The Method being invoked. |
| MethodInvocationTarget | MethodInfo | The Method being invoked on the target. |
Methods
Proceed(Object[] args) : Object
The Proceed go on with the actual invocation.
| Parameter | Description |
|---|---|
| args | The arguments of the method |