Exemplo n.º 1
0
 public void MulticastNullTerminated(string text)
 {
     Console.WriteLine($"Sending to all clients: {text}");
     Multicast(CommandStringHelper.InsertEndOfCommandMarker(text));
 }
Exemplo n.º 2
0
 public void SendNullTerminated(string text)
 {
     Console.WriteLine($"Sending to client {Id}: {text}");
     Send(CommandStringHelper.InsertEndOfCommandMarker(text));
 }