You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.