Files
Umbraco-CMS/src/Umbraco.Web/FrameworkMarchal.cs
2019-12-18 13:42:32 +01:00

14 lines
347 B
C#

using System;
using System.Runtime.InteropServices;
using Umbraco.Core.Diagnostics;
namespace Umbraco.Web
{
public class FrameworkMarchal : IMarchal
{
// This thing is not available in net standard, but exists in both .Net 4 and .Net Core 3
public IntPtr GetExceptionPointers() => Marshal.GetExceptionPointers();
}
}