防止刷道具

/// /// 操作是否频繁,设置禁止操作时间(opKind:操作类型, overtimes:禁止操作时间 /// private bool IsOperatorFrequent(string opKind, int overtimes) { if (HttpRuntime.Cache[opKind + You9Account] != null) { return true; } HttpRuntime.Cache.Add(opKind + You9Account, You9Account, null, DateTime.Now.AddSeconds(17), Cache.NoSlidingExpiration, CacheItemPriority.Normal, null); return false; } /// /// 删除操作频繁标志 /// private void ClearOperatorFrequent(string opKind) { HttpRuntime.Cache.Remove(opKind + You9Account); }

你可能感兴趣的:(防止刷道具)