public async Task InvokeAsync(Func <AopContext, Task> invoke, AopContext context) { if (context.MethodInfo.GetCustomAttribute <JitAopAttribute>() != null) { await context.InvokeAsync(); } else { await invoke(context); } }
public Task InvokeAsync(AopContext context) { return(context.InvokeAsync()); }