IContractResolver public interface IContractResolver Used by JsonSerializer to resolve a JsonContract for a given Type. Documentation Code using System; namespace Newtonsoft.Json.Serialization { public interface IContractResolver { JsonContract ResolveContract(Type type); } }