Exemple #1
0
 public void RegisterNetworkChannel(TcpNetworkChannel channel)
 {
     if (channel != null)
     {
         this.networkChannels[channel.Id] = channel;
     }
 }
Exemple #2
0
 private static SocketError SendAllBytes(Socket dest, byte[] bytes)
 {
     return TcpNetworkChannel.SendAllBytes(dest, new ArraySegment<byte>(bytes));
 }