ClassRtfMsg.cs
上传用户:lqb116
上传日期:2014-04-04
资源大小:2712k
文件大小:1k
源码类别:

P2P编程

开发平台:

C#

  1. using System;
  2. namespace LanMsg.Controls
  3. {
  4. /// <summary>
  5. /// ClassMsg 的摘要说明。
  6. /// </summary>
  7. /// []
  8. [Serializable]
  9. public class ClassMsg
  10. {
  11. public string ID="";//发送消息的用户ID
  12.         public int MsgInfoClass=0;//发送的消息类别(1为登录;2为更改在线状态;3.,11表示GIF图片
  13.         public byte[] MsgContent=null;//发送消息二进制序列化后生成的字节数组数据
  14.         public string AssemblyVersion= "1.0.0.1" ;
  15. public ClassMsg(int msgInfoClass,string id,byte[] msgContent)
  16. {
  17.    this.ID=id;
  18.    this.MsgInfoClass=msgInfoClass;
  19.    this.MsgContent=msgContent;
  20.            
  21. }
  22.   }
  23. }