You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to reliably catch unhandled exceptions on iOS we listen to Runtime.MarshalManagedException rather than AppDomain.UnhandledException. Whilst this seems to work, it has the disadvantage that the args passed to Runtime.MarshalManagedException don't indicate whether the exception is terminal or not (we just assume it is).
In order to reliably catch unhandled exceptions on iOS we listen to
Runtime.MarshalManagedException
rather thanAppDomain.UnhandledException
. Whilst this seems to work, it has the disadvantage that the args passed toRuntime.MarshalManagedException
don't indicate whether the exception is terminal or not (we just assume it is).Apparently this should be fixed in .NET 10:
We'd need to test this out of course. If it works though, we could do away with the
Runtime.MarshalManagedException
callback.The text was updated successfully, but these errors were encountered: