Browse Source
Set JsonSerializerOptionsCache static.
pull/13248/head
maliming
4 years ago
No known key found for this signature in database
GPG Key ID: 96224957E51C89E
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Json/Volo/Abp/Json/SystemTextJson/AbpSystemTextJsonSerializerProvider.cs
|
|
|
@ -40,7 +40,7 @@ public class AbpSystemTextJsonSerializerProvider : IJsonSerializerProvider, ITra |
|
|
|
return JsonSerializer.Deserialize(jsonString, type, CreateJsonSerializerOptions(camelCase)); |
|
|
|
} |
|
|
|
|
|
|
|
private readonly ConcurrentDictionary<string, JsonSerializerOptions> JsonSerializerOptionsCache = new ConcurrentDictionary<string, JsonSerializerOptions>(); |
|
|
|
private readonly static ConcurrentDictionary<string, JsonSerializerOptions> JsonSerializerOptionsCache = new ConcurrentDictionary<string, JsonSerializerOptions>(); |
|
|
|
|
|
|
|
protected virtual JsonSerializerOptions CreateJsonSerializerOptions(bool camelCase = true, bool indented = false) |
|
|
|
{ |
|
|
|
|