using System.Threading; namespace FastGithub.PacketIntercept { /// /// tcp拦截器接口 /// interface ITcpInterceptor { /// /// 拦截tcp /// /// void Intercept(CancellationToken cancellationToken); } }