JsonLinqContract public class JsonLinqContract : JsonContract Contract details for a Type used by the JsonSerializer. Documentation Code using System; namespace Newtonsoft.Json.Serialization { public class JsonLinqContract : JsonContract { public JsonLinqContract(Type underlyingType) : base(underlyingType) { ContractType = JsonContractType.Linq; } } }