Exemple #1
0
        /// <summary>
        /// 解锁
        /// </summary>
        /// <returns></returns>
        private string Unlock()
        {
            var lockKey = this._ctx.Request["key"];

            if (lockKey.IsNullOrEmpty())
            {
                return("Please send the lock key");
            }
            GlobalService.Unlock(lockKey);
            return("OK");
        }