Newtonsoft.Json.Serialization.JsonISerializableContract.JsonISerializableContract C# (CSharp) Method

JsonISerializableContract() public method

Initializes a new instance of the JsonISerializableContract class.
public JsonISerializableContract ( Type underlyingType ) : System
underlyingType System.Type The underlying type for the contract.
return System
        public JsonISerializableContract(Type underlyingType)
            : base(underlyingType)
        {
            ContractType = JsonContractType.Serializable;
        }
    }
JsonISerializableContract