A quick google on how I do this results in me writing the following snippet:
var proxy = new WebClient();
proxy.OpenReadCompleted += proxy_OpenReadCompleted;
proxy.OpenReadAsync(new Uri("restfulurl"));
// Calling the following method...
private void proxy_OpenReadCompleted(object sender, OpenReadCompletedEventArgs e)
{
var strm = new StreamReader(e.Result);
string jsonText = strm.ReadToEnd();
// ... etc
}
Next, how do we parse this into a dynamic type? In C# 4.0 we can do some really nice stuff like this:
using System.Web.Script.Serialization;
...
JavaScriptSerializer jss = new JavaScriptSerializer();
var d = jss.Deserialize(jsonText);
Here we hit a roadblock... JavaScriptSerializer was deprecated after Silverlight 1.1... HRMPH!
Silverlight, sometimes I hate you...
After countless searches and getting very close to embarking on a journey to build a JSON parser... I'm going to give a call out to a great blog post by jprichardson here. Saved me a few days effort, cheers mate! I quickly grabbed this source from GIT, built it, and stuck the silverlight libraries into my project. Now I do this:
var jsp = new JsonParser();
dynamic json = jsp.Parse(jsonText);
Whazzam, I have dynamic object from my JSON!
I have to say though, the deeper I dig into Silverlight the more shocked I am at the little things that take so much effort...