JSON serialization framework for .NET
Questions tagged [jsonfx]
18 questions
0
votes
2 answers
JsonFx with IL2CPP
Constructor not working with the IL2CPP.Here is the log i get.
MissingMethodException: Method not found: 'Default constructor not
found...ctor() of System.ComponentModel.ByteConverter'. at
System.ArgumentNullException..ctor (System.String…

Richard Navin
- 13
- 1
- 5
0
votes
1 answer
How can I get specific values out of a JsonFX deserialized object?
I'm using JsonFX (it's a requirement, Json.Net isn't an option) to pull values out of Json, but I don't want to have to create a class to deserialize to for every bit of Json that I want to parse. So if I have this bit of JSON:
{
Parent:
{
…

Mike Pateras
- 14,715
- 30
- 97
- 137
0
votes
1 answer
How to deserialize polymorphic collections in JsonFX?
My JsonFX serialization code works, but the object that I'm serializing contains a list of polymorphic entities, and they're all deserialized as their base type and not their actual type.
Here's my serialization code:
public static string…

Mike Pateras
- 14,715
- 30
- 97
- 137