I’d like to put some sort of “connection quality” indicator on a Silverlight 3 app that would give the user an idea of their connection speed. This could be an icon that turns red, yellow or green to give a basic idea of the performance the user should expect. What’s a good way to measure connection speed in Silverlight?
Share
I’d start a web request and then time how long it took. Something like:
public partial class Page : UserControl
{
DateTime started;
}