use single static JsonSerializerOptions instance for MyApiClient

This commit is contained in:
Nick Seguin 2024-02-13 19:35:52 -06:00
parent 764d21cd1f
commit 9a40eb18e9
Signed by: nseguin
GPG key ID: 68C99FA84079021D

View file

@ -1,5 +1,6 @@
using System;
using System.Net.Http;
using System.Text.Json;
using Refit;
@ -14,16 +15,18 @@ public class MyApiClient : IMyApiClient, IDisposable
public MyApiClient(HttpClient httpClient)
{
_httpClient = httpClient;
RefitSettings refitSettings = new RefitSettings
RefitSettings refitSettings = new()
{
ContentSerializer
= new SystemTextJsonContentSerializer(MyApiJsonSerializerOptions.Create())
ContentSerializer = new SystemTextJsonContentSerializer(JsonSerializerOptions)
};
GetWeatherForecast
= RestService.For<IGetWeatherForecastEndpoint>(_httpClient, refitSettings);
}
public static JsonSerializerOptions JsonSerializerOptions { get; }
= MyApiJsonSerializerOptions.Create();
public IGetWeatherForecastEndpoint GetWeatherForecast { get; }
public void Dispose()