JsonizeMismatchException

Thrown when the keys of a json object fail to match up with the members of the target type.

Constructors

this
this(TypeInfo targetType, string[] extraKeys, string[] missingKeys)
Undocumented in source.

Members

Variables

extraKeys
string[] extraKeys;

keys present in json that do not match up to a member.

missingKeys
string[] missingKeys;

non-optional members that were not found in the json.

targetType
TypeInfo targetType;

Type jsonizer was attempting to deserialize to.

Meta