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