Ejemplo n.º 1
0
 // runs the client
 public void RunClient()
 {
     if (!client.IsRunning())
     {
         client.SetBlockingSockets(blocking); // updated value
         client.RunClient();
     }
 }
Ejemplo n.º 2
0
 // checks to see if the server is running
 public static bool IsRunning()
 {
     return(client.IsRunning());
 }