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

JsonDynamicContract() public method

Initializes a new instance of the JsonDynamicContract class.
public JsonDynamicContract ( Type underlyingType ) : System
underlyingType System.Type The underlying type for the contract.
return System
    public JsonDynamicContract(Type underlyingType)
      : base(underlyingType)
    {
      Properties = new JsonPropertyCollection(UnderlyingType);
    }
  }
JsonDynamicContract