Skip to content

Commit 5424b07

Browse files
Erik Bylundkirre-bylund
authored andcommitted
Allow zero/default value properties in json serialization
1 parent fdb7dc6 commit 5424b07

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Libraries/ZeroDepJson/ZeroDepJson.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System;
1+
using System;
22
using System.CodeDom.Compiler;
33
using System.Collections;
44
using System.Collections.Generic;
@@ -5444,7 +5444,7 @@ public enum JsonSerializationOptions
54445444
/// <summary>
54455445
/// The default value.
54465446
/// </summary>
5447-
Default = UseXmlIgnore | UseScriptIgnore | SerializeFields | AutoParseDateTime | UseJsonAttribute | SkipGetOnly | SkipDefaultValues | SkipZeroValueTypes | SkipNullPropertyValues | SkipNullDateTimeValues,
5447+
Default = UseXmlIgnore | UseScriptIgnore | SerializeFields | AutoParseDateTime | UseJsonAttribute | SkipGetOnly | SkipNullPropertyValues | SkipNullDateTimeValues,
54485448
}
54495449

54505450
/// <summary>

0 commit comments

Comments
 (0)