Beispiel #1
0
 /// <summary>
 /// 发送Just数据包
 /// </summary>
 /// <param name="just">数据包</param>
 public void SendJust(Just.Just just, object obj)
 {
     JustArgs args = new JustArgs();
     args.buffer = just.get();
     args.TAG = obj;
     this.SendJust(args);
 }
Beispiel #2
0
 /// <summary>
 /// 发送Just数据包
 /// </summary>
 /// <param name="just">数据包</param>
 public void SendJust(Just.Just just)
 {
     JustArgs args = new JustArgs();
     args.buffer = just.get();
     this.SendJust(args);
 }