mirror of https://github.com/abpframework/abp
parent
b6eb00da45
commit
a3a86faa40
@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
namespace Volo.Abp.DynamicProxy
|
||||
{
|
||||
public interface IAbpMethodInvocation
|
||||
{
|
||||
object[] Arguments { get; }
|
||||
|
||||
Type[] GenericArguments { get; }
|
||||
|
||||
object InvocationTarget { get; }
|
||||
|
||||
MethodInfo MethodInvocationTarget { get; }
|
||||
|
||||
object ReturnValue { get; set; }
|
||||
|
||||
void Proceed();
|
||||
}
|
||||
}
|
||||
Loading…
Reference in new issue