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