Ejemplo n.º 1
0
 public Connection(string host, int port)
 {
     Type = Enums.ConnectionType.Client;
     Host = host;
     Port = port;
     if (Host == "")
     {
         Type = Enums.ConnectionType.Server;
         Host = null;
     }
 }
Ejemplo n.º 2
0
 public Connection(int port)
 {
     Type = Enums.ConnectionType.Server;
     Host = null;
     Port = port;
 }