public void AsyncInvocationErrorEventHandler(object sender, AsyncInvocationErrorEventArgs e) { Platform.Log(LogLevel.Error, e); // forward the event on to the view layer EventsHelper.Fire(_asyncInvocationError, sender, e); }
private void OnInvocationError(string id, Exception error) { var args = new AsyncInvocationErrorEventArgs(id, error); EventsHelper.Fire(_asyncInvocationError, this, args); }