Hello,
I inherited a project in Xamarin which uses the RestSharp component to consume the webapi exposed for the mobile devices.
When de-serializing DateTime properties like:
"Start":"2013-10-18T22:13:55Z"
This UTC value is converted to local time.
After searching for a while I came up to this post, which is using
JSON.NET for the Deserialization w/o experiencing the issue.
Is there a work around this, other than the one suggested in the answer?
I see I can set the JsonSerializer and JsonDeserializer in the request, which have to implement ISerializer and IDeserializer respectively; is there any implementation using
JSON.NET out there?
Thanks!
R.