You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `builder.Options` is of type [JsonSerializerOptions](https://docs.microsoft.com/en-us/dotnet/api/system.text.json.jsonserializeroptions?view=net-6.0).
30
42
43
+
### ISerializerService
44
+
45
+
The `ISerializerService` can be used to manage multiple serializers:
46
+
47
+
```csharp
48
+
publicinterfaceISerializerService
49
+
{
50
+
IEnumerable<ISerializer> Serializers { get; }
51
+
ISerializerServiceAdd(ISerializerserializer);
52
+
boolContains(stringname);
53
+
ISerializerGet(stringname);
54
+
}
55
+
```
56
+
57
+
You can use the `SerializerService` implementation to store and retrieve serializers by their `Name`:
0 commit comments