Tests.TestClient.TestClient C# (CSharp) Method

TestClient() public method

public TestClient ( int port ) : System
port int
return System
        public TestClient(int port) : base(SocketConnection.ConnectAsync(new IPEndPoint(IPAddress.Loopback, port)).Result)
        {
            Timeout = Debugger.IsAttached ? TimeSpan.FromHours(1) : TimeSpan.FromSeconds(1);
        }
    }
TestClient