Skip to content

Commit fd64c1d

Browse files
Merge pull request #4 from tstrausbaugh-dev/master
Update SerializationsExtensions.cs
2 parents 6b054af + edd47f1 commit fd64c1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Open.Serialization.Json.System/SerializationsExtensions.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ public static JsonSerializerOptions Clone(this JsonSerializerOptions options)
8484
PropertyNameCaseInsensitive = options.PropertyNameCaseInsensitive,
8585
PropertyNamingPolicy = options.PropertyNamingPolicy,
8686
ReadCommentHandling = options.ReadCommentHandling,
87-
WriteIndented = options.WriteIndented
87+
WriteIndented = options.WriteIndented,
88+
DefaultIgnoreCondition = options.DefaultIgnoreCondition,
89+
ReferenceHandler = options.ReferenceHandler
8890
};
8991

9092
foreach (var converter in options.Converters)

0 commit comments

Comments
 (0)