Beispiel #1
0
 public ServerConnection(int port) : base(NetworkUtilities.GetLocalIPAddress(), port)
 {
     IsLocalConnection = true;
     Listener          = new TcpListener(IPAddress.Parse(SERVER_IP), PORT_NO);
 }
Beispiel #2
0
 public new bool IsLocalConnection()
 {
     return(IPAddress == NetworkUtilities.GetLocalIPAddress());
 }