void RunResumedSession() { // send 1st exception which should include session info Bugsnag.StartSession(); Bugsnag.Notify(new System.Exception("First Error")); // send 2nd exception after resuming a session Bugsnag.StopSession(); Bugsnag.ResumeSession(); Bugsnag.Notify(new System.Exception("Second Error")); }