CgwMonitorManage.Service.SessionManage.RemoveAllSession C# (CSharp) Method

RemoveAllSession() public method

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