using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.DependencyInjection; using Volo.Abp.DynamicProxy; namespace JiShe.CollectBus.Interceptors { public class ProtocolInspectInterceptor : AbpInterceptor, ITransientDependency { public override async Task InterceptAsync(IAbpMethodInvocation invocation) { await invocation.ProceedAsync(); } } }