You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using Newtonsoft.Json;
-
- namespace HealthMonitor.WebApi.Extensions
- {
- public static class ObjectJsonConvertExt
- {
- public static string ToJson(this object target)
- {
- var jsonSetting = new JsonSerializerSettings { NullValueHandling = NullValueHandling.Ignore };
- return JsonConvert.SerializeObject(target, jsonSetting);
- }
- }
- }
|