Skip to content

Instantly share code, notes, and snippets.

@doggy8088
Last active June 2, 2023 00:45
Show Gist options
  • Save doggy8088/5566036 to your computer and use it in GitHub Desktop.
Save doggy8088/5566036 to your computer and use it in GitHub Desktop.
ReferenceLoopHandling for ASP.NET Web API
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;
namespace WebApiSample
{
// Note: For instructions on enabling IIS6 or IIS7 classic mode,
// visit http://go.microsoft.com/?LinkId=9394801
public class WebApiApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
GlobalConfiguration.Configuration.Formatters.XmlFormatter.SupportedMediaTypes.Clear();
GlobalConfiguration.Configuration.Formatters.JsonFormatter.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore;
}
}
}
@vanhoutenbos
Copy link

Whenever I add this to my code, it results in 'Attempted to read or write protected memory. This is often an indication that other memory is corrupt'
Any idea what is wrong?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment