示例#1
0
        /// <summary>
        /// Deletes set of logs
        /// </summary>
        /// <param name="infos">The logs to delete</param>
        /// <returns>True if deleted log</returns>
        public bool DeleteSetOfLogs(List <LogInfo> infos)
        {
            if (infos == null)
            {
                throw new ArgumentNullException("info");
            }

            return(_logOperations.DeleteSetOfLogs(infos, true));
        }