Make `DeserializeOptions` in `ApiDescriptionFinder` changeable.

pull/10893/head
maliming 4 years ago
parent 7842a622bd
commit 0d0dc03e45
No known key found for this signature in database
GPG Key ID: 096224957E51C89E

@ -90,7 +90,7 @@ namespace Volo.Abp.Http.Client.DynamicProxying
return await Cache.GetAsync(baseUrl, () => GetApiDescriptionFromServerAsync(client, baseUrl));
}
private static readonly JsonSerializerOptions DeserializeOptions = new JsonSerializerOptions
public static JsonSerializerOptions DeserializeOptions = new JsonSerializerOptions
{
PropertyNamingPolicy = JsonNamingPolicy.CamelCase
};

Loading…
Cancel
Save