Elmah.ErrorSignalEventArgs.ErrorSignalEventArgs C# (CSharp) Метод

ErrorSignalEventArgs() публичный Метод

public ErrorSignalEventArgs ( Exception e, System.Web.HttpContextBase context, CallerInfo callerInfo ) : System
e System.Exception
context System.Web.HttpContextBase
callerInfo CallerInfo
Результат System
        public ErrorSignalEventArgs(Exception e, HttpContextBase context, CallerInfo callerInfo)
        {
            if (e == null)
                throw new ArgumentNullException("e");

            _exception = e;
            _context = context;
            CallerInfo = callerInfo ?? CallerInfo.Empty;
        }

Same methods

ErrorSignalEventArgs::ErrorSignalEventArgs ( Exception e, System.Web.HttpContextBase context ) : System