Ejemplo n.º 1
0
        public void OpenSession(string sessionKey, string username, string password)
        {
            //Auth login and IP
            AuthorizeClient(username, password);

            RevisionLog.StartNewLog("__tempremoteLog", RevisionLogType.Remote);

            LocalRepo.SessionKey = sessionKey;
            LocalRepo.OpenSession(sessionKey);
        }
Ejemplo n.º 2
0
        public void OpenSession(string sessionKey, string username, string password)
        {
            if (string.IsNullOrEmpty(sessionKey))
            {
                sessionKey = "default";
            }

            //Auth login and IP
            AuthorizeClient(username, password);

            LocalRepo.SessionKey = sessionKey;
            LocalRepo.OpenSession(sessionKey);
        }