Example #1
0
        public void Connect()
        {
            try
            {
                ActiveConnection.Connect(ServerAddress, ServerPort);

                IsConnected = true;
            }
            catch (Exception)
            {
                IsConnected = false;
            }
        }