Questions tagged «sendgrid»

7
如何使用JSON.net处理同一个属性的单个项目和数组
我正在尝试修复SendGridPlus库以处理SendGrid事件,但是我在API中对类别的不一致处理方面遇到了一些麻烦。 在下面的示例中,该有效负载取自SendGrid API参考,您将注意到category每个项目的属性可以是单个字符串或字符串数​​组。 [ { "email": "john.doe@sendgrid.com", "timestamp": 1337966815, "category": [ "newuser", "transactional" ], "event": "open" }, { "email": "jane.doe@sendgrid.com", "timestamp": 1337966815, "category": "olduser", "event": "open" } ] 看起来让我像这样的JSON.NET的选项是在输入字符串之前对其进行修复,或者将JSON.NET配置为接受不正确的数据。如果我可以摆脱它,我宁愿不进行任何字符串解析。 我还有其他方法可以使用Json.Net处理吗?
101 json.net  sendgrid 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.