using System; using System.Collections.Generic; using System.Linq; using System.Net.Sockets; using System.Text; namespace MECF.Framework.RT.Core.IoProviders.Siemens.Net.StateOne { /// /// 异形客户端的异步对象 /// public class AlienSession { /// /// 实例化一个默认的参数 /// public AlienSession() { IsStatusOk = true; } /// /// 网络套接字 /// public Socket Socket { get; set; } /// /// 唯一的标识 /// public string DTU { get; set; } /// /// 指示当前的网络状态 /// public bool IsStatusOk { get; set; } } }