use single static JsonSerializerOptions instance for MyApiClient
This commit is contained in:
parent
764d21cd1f
commit
9a40eb18e9
1 changed files with 6 additions and 3 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue