Bugsnag.Library.BugSnag.Notify C# (CSharp) Метод

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

Gathers information for the last error (if any error is available) and reports it to BugSnag using information from the application configuration file and other defaults
public Notify ( ) : void
Результат void
        public void Notify()
        {
            Notify(null);
        }

Same methods

BugSnag::Notify ( List exList, object extraData ) : void
BugSnag::Notify ( List exList, string userId, string context, object extraData ) : void
BugSnag::Notify ( System ex, object extraData ) : void
BugSnag::Notify ( System ex, string userId, string context, object extraData ) : void
BugSnag::Notify ( object extraData ) : void

Usage Example

Пример #1
0
        //  Added for the BugSnag sample web application
        protected void Application_Error(object sender, EventArgs e)
        {
            //  Create a new BugSnag notifier
            BugSnag bs = new BugSnag();

            //  Notify.  This will get configuration from the web.config
            //  and gather all known errors and report them.  It's just that simple!
            bs.Notify();
        }