Open
Description
example:
var msg = new SendGridMessage();
var serializerSettings = new Newtonsoft.Json.JsonSerializerSettings
{
NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore,
ContractResolver = new CamelCasePropertyNamesContractResolver()
};
msg.SetTemplateData(dynamicTemplateData, serializerSettings);
Current options are far too restrictive, I can only see that decorating properties with JsonProperty has any type of effect.
Also, I'm sure this test is simply testing Newtonsofts lib.