CgwMonitorManage.Service.SessionManage.RemoveAllSession C# (CSharp) 메소드

RemoveAllSession() 공개 메소드

删除会话
public RemoveAllSession ( ) : void
리턴 void
        public void RemoveAllSession()
        {
            if (rwl.TryEnterWriteLock(CgwConst.ENTER_LOCK_WAIT_TIME))
            {
                sessionDict = new Dictionary<Guid, CgwSession>();
                rwl.ExitWriteLock();
            }
        }