IMethodInterceptor API Document
Interface that should be implemented by any component that wishes to be referenced as interceptor.
Quick Note
This interface will be replaced by IInterceptor
Methods
Intercept(IMethodInvocation invocation, Object[] args) : Object
Method invoked by the proxy in order to allow the interceptor to do its work before and after the actual invocation.
| Parameter | Description |
|---|---|
| invocation | The invocation holds the details of this interception |
| args | The original method arguments |