FastGithub/FastGithub.PacketIntercept/ITcpInterceptor.cs
2021-09-22 14:03:44 +08:00

16 lines
355 B
C#

using System.Threading;
namespace FastGithub.PacketIntercept
{
/// <summary>
/// tcp拦截器接口
/// </summary>
interface ITcpInterceptor
{
/// <summary>
/// 拦截tcp
/// </summary>
/// <param name="cancellationToken"></param>
void Intercept(CancellationToken cancellationToken);
}
}