First , thanks for your JsonObjectConverter, base of this class , I solve my problem about interface collection .
And, for your question, very simple:
And, for your question, very simple:
JsonSerializerSettings = new JsonSerializerSettings
{
Converters = new JsonConverter[]
{
new JsonObjectConverter<IYourInterface,YourImplement>(),
},
};
Other, I tried Binder to resolve implement type name ,but I don't know why binder code don't run .