JsConfig.BeginScope and custom type serializer

368 Views Asked by At

JsConfig.BeginScope allows me to customize serialization for specific operation without affecting global config. However, how do I provide custom SerializeFn for specific type for the duration of the scope? It seems JsConfig< T > is always static and ignores the scope completely?

1

There are 1 best solutions below

2
On

Configuration on JsConfig<T> is only configurable statically and is not an available option on JsConfigScope.