I have a WebAPI project that has the StringEnumConverter of JSON.net set to be the default converter for enums.
jsonFormatter.SerializerSettings.Converters.Add(new Newtonsoft.Json.Converters.StringEnumConverter());
However let's say I have a particular enum that I want to actually serialize as an integer. Is there a converter I can decorate on the property to override the StringEnumConverter and instead use integer?