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.
MaxDepth
1 parent b3ce87b commit 3bd035fCopy full SHA for 3bd035f
src/Elastic.Clients.Elasticsearch/_Shared/Serialization/DefaultRequestResponseSerializer.cs
@@ -115,8 +115,8 @@ private static IReadOnlyCollection<JsonConverter> CreateDefaultBuiltInConverters
115
116
private static void MutateOptions(JsonSerializerOptions options)
117
{
118
+ options.MaxDepth = 512;
119
options.DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull;
- options.IncludeFields = true;
120
options.NumberHandling = JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.AllowNamedFloatingPointLiterals;
121
options.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
122
}
0 commit comments