using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net.Sockets; namespace Mesnac.Communication { public sealed class MySocketAsyncEventArgs : SocketAsyncEventArgs { private string Property; //读写类型 /// /// 构造方法 /// /// 读写操作类型:Receive/Send public MySocketAsyncEventArgs(string property) { this.Property = property; } /// /// 用户标识 /// public string UID { get; set; } } }