using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace IStation
{
///
/// 异步TcpListener TCP服务器事件参数类
///
public class AsyncTcpEventArgs:EventArgs
{
public AsyncTcpEventArgs(TcpClientState state)
{
this.State = state;
}
///
/// 客户端状态封装类
///
public TcpClientState State;
}
}