Automatr.Automatr.Connect C# (CSharp) Method

Connect() private method

private Connect ( ) : bool
return bool
        private bool Connect()
        {
            RemoteConfig remote = m_Area.GetRemote("default");
            AutomatrLog.Log("Attempting to connect to remote:");
            AutomatrLog.Log("\tHost = " + remote.Host);
            AutomatrLog.Log("\tPort = " + remote.Port);
            AutomatrLog.Log("\tModule = " + remote.Module);
            return m_Client.Connect(remote.Host, remote.Port, remote.Module);
        }