Internal_LogException() приватный Метод

private Internal_LogException ( Exception exception, [ obj ) : void
exception System.Exception
obj [
Результат void
Пример #1
0
        public void LogException(Exception exception, Object context)
        {
            bool flag = exception == null;

            if (flag)
            {
                throw new ArgumentNullException("exception");
            }
            DebugLogHandler.Internal_LogException(exception, context);
        }
 public void LogException(Exception exception, Object context)
 {
     DebugLogHandler.Internal_LogException(exception, context);
 }