Is it possible to provide somekind of custom contract resolver to the build-in JsonSerializer?
The response data is formatted as this:
{
"name":"Rob Angelier"
}
The property i would like to set is: Name
The question is: How can i deserialize from camelcase to pascalcase notation?
Hope you can help me out!
You can get the name property with either:
Otherwise you can create a strong-typed class that matches the JSON to deserialize into, e.g:
In the ServiceStack JSON test suite you can find multiple different ways to deserialize the same thing.