I’ve made small demo application on how to search Twitter using Twitter REST API and RadGridView for Silverlight:
To download Twitter ATOM response you can use simple WebClient:
if (!String.IsNullOrEmpty(TextBox1.Text))
{
WebClient client = new WebClient();
client.DownloadStringCompleted += newDownloadStringCompletedEventHandler(client_DownloadStringCompleted);
if(!client.IsBusy)
client.DownloadStringAsync(new Uri(String.Format(urlFormat, TextBox1.Text, pageSize, currentPageIndex)));
}
and you can parse the response using XDocument.Parse() method:
XNamespace atomNamespace = "http://www.w3.org/2005/Atom";
RadGridView1.ItemsSource = from item in...