Support serialization options for Array and Dictionary values. For example, given the types:
[Flags] public enum F { ... } public class C { public ObjectId Id; public List<F> A; public Dictionary<string, F> D; }
we want to be able to apply serialization options to the F values to serialize them as strings (this is just one example, F could be any other type).
- duplicates
-
CSHARP-284 Add a way to provide serialization attributes to be applied to collection elements
- Closed