Exemplo n.º 1
0
        public bool Remove(TraceLogEntry entry)
        {
            //Remove the specified trace log entry
            bool ret = false;

            try {
                ret = entry.Delete();
            }
            catch (Exception ex) { throw new ApplicationException("Unexpected error removing trace log entry.", ex); }
            return(ret);
        }