We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b054af commit edd47f1Copy full SHA for edd47f1
Open.Serialization.Json.System/SerializationsExtensions.cs
@@ -84,7 +84,9 @@ public static JsonSerializerOptions Clone(this JsonSerializerOptions options)
84
PropertyNameCaseInsensitive = options.PropertyNameCaseInsensitive,
85
PropertyNamingPolicy = options.PropertyNamingPolicy,
86
ReadCommentHandling = options.ReadCommentHandling,
87
- WriteIndented = options.WriteIndented
+ WriteIndented = options.WriteIndented,
88
+ DefaultIgnoreCondition = options.DefaultIgnoreCondition,
89
+ ReferenceHandler = options.ReferenceHandler
90
};
91
92
foreach (var converter in options.Converters)
0 commit comments