Example #1
0
        public bool Remove(TraceLogEntry entry)
        {
            //Remove the specified trace log entry
            bool bRet = false;

            try {
                bRet = entry.Delete();
            }
            catch (Exception ex) { throw ex; }
            return(bRet);
        }