Deserializing Data into Appropriate Handler Object
For a system of any complexity, there are most likely going to be many
objects serializing data.
For example, say each serialized object derives from IData. And we have
multiple ISerializer objects, that serialize their data into via Json.net,
what are best practices for deserializing that data and determining the
appropriate ISerializer object to handle the data?
When I deserizlie some IDataI don't know which of my ISerializer objects
to invoke HandleData on.
No comments:
Post a Comment