コード例 #1
0
        public bool SSO_InternalHeartbeat()
        {
            var    ttlsession = getSession();
            var    sessionID  = GetCurrentSessionID();
            string userID     = null;

            if (ttlsession != null && ttlsession.clientID != null)
            {
                userID = ttlsession.clientID;
            }

            if (sessionID != null && userID != null)
            {
                SessionController.TryHeartbeatSessionLogin(sessionID, userID);
            }
            return(false);
        }