I run simple deserialization in the native event type with:
JSON.Deserialize<Event>(text);
with the exception of:
An exception of type 'Jil.DeserializationException' occurred in Jil.dll but was not handled in user code.
Additional information: Expected character: '\'
Deserialization Newtonsoft JSON works well on the same json, JSONLint JSON is also validated. Any clues here? I tried passing the string as well as using (StringReader) as suggested on the github JIL page.
source
share