Beispiel #1
0
        /// <summary>
        /// Initialise the ExceptionReporter
        /// <remarks>readConfig() should be called (explicitly) if you need to override default config settings</remarks>
        /// </summary>
        public ExceptionReporter()
        {
            var callingAssembly = Assembly.GetCallingAssembly();

            _reportInfo = new ExceptionReportInfo
            {
                AppAssembly = callingAssembly
            };

            _viewResolver          = new ViewResolver(callingAssembly);
            _internalExceptionView = ViewFactory.Create <IInternalExceptionView>(_viewResolver);
        }
        /// <summary>
        /// Initialise the ExceptionReporter
        /// <remarks>readConfig() should be called (explicitly) if you need to override default config settings</remarks>
        /// </summary>
        public ExceptionReporter()
        {
            var callingAssembly = Assembly.GetCallingAssembly();

            _reportInfo = new ExceptionReportInfo
                              {
                                  AppAssembly = callingAssembly
                              };

            _viewResolver = new ViewResolver(callingAssembly);
            _internalExceptionView = ViewFactory.Create<IInternalExceptionView>(_viewResolver);
        }