Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Created July 12, 2012 02:18
Show Gist options
  • Save jonpryor/3095248 to your computer and use it in GitHub Desktop.
Save jonpryor/3095248 to your computer and use it in GitHub Desktop.
void scrim_DownloadStringCompleted(object sender, DownloadStringCompletedEventArgs e)
{
XElement xmlScrim = XElement.Parse(e.Result, LoadOptions.None);
RunOnUiThread(() => {
var scrimresult = FindViewById<EditText>(Resource.Id.result);
scrimresult.Text = xmlScrim.Element("url").Value;
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment