Ejemplo n.º 1
0
 public void SendPackets(IEnumerable <String> packets)
 {
     if (!IsDisposing)
     {
         _client.SendPackets(packets);
     }
 }
Ejemplo n.º 2
0
 public void SendPackets(IEnumerable <string> packets, byte priority = 10)
 {
     if (!IsDisposing)
     {
         _client.SendPackets(packets, priority);
     }
 }