19 lines
472 B
C#
19 lines
472 B
C#
|
|
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();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|