I know you can deserialize a JSON object from an HttpWebResponse using the WebClient.DownloadString() but what about the other way around? I've looked at the MSDN pages and I don't know if you can serialize to JSON objects or not, anyone know?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I think you may just have to serialize the object into JSON before using the WebClient instance. Hope this helps
Here's an example of sending JSON data from the WebClient class:
Here is a simple helper class that uses the
|
||||
|
|
I use :
|
|||
|
|
|
I never heard of deserialize only with WebClient but i had success using WebClient upload params and using .NETs json serialize class |
|||||||
|
