|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
namespace System
{
public static partial class AppContext
{
[UnmanagedCallersOnly]
internal static unsafe void OnFirstChanceException(Exception* pException, Exception* pOutException)
{
try
{
OnFirstChanceException(*pException, AppDomain.CurrentDomain);
}
catch (Exception ex)
{
*pOutException = ex;
}
}
internal static void SetFirstChanceExceptionHandler()
=> SetFirstChanceExceptionHandlerInternal();
[LibraryImport(RuntimeHelpers.QCall, EntryPoint = "AppContext_SetFirstChanceExceptionHandler")]
[SuppressGCTransition]
private static partial void SetFirstChanceExceptionHandlerInternal();
}
}
|