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