예제 #1
0
        /// ///////////////////////////////////////////////////
        public static void CloseSession(CSessionClientSurServeur session)
        {
            CDonneeNotificationConnection donnee = new CDonneeNotificationConnection(session.IdSession, false);

            CEnvoyeurNotification.EnvoieNotifications(new IDonneeNotification[] { donnee });

            lock (typeof(CLockerListeSessions))
            {
                m_listeSessions.Remove(session.IdSession);
            }

            CSessionClient.OnCloseSessionServeur(session.IdSession);
        }