Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Version detection with Silverlight

How can I efficiently and effectively detect the version and, for that matter, any available information about the instance of Silverlight currently running on the browser?

like image 559
Danny Whitt Avatar asked Aug 21 '08 18:08

Danny Whitt


People also ask

Do I need Microsoft Silverlight 2020?

Silverlight is a web framework, similar to Adobe Flash, that once enabled rich media content in your browser. Years ago, these plugins were necessary on a lot of websites. But now they're deprecated and no longer useful.

What is Microsoft Office Silverlight?

Microsoft Silverlight is a free web-browser plug-in that enables interactive media experiences, rich business applications and immersive mobile apps.

Can you uninstall Microsoft Silverlight?

Click on the Start button. Select Control Panel. Select Programs & Features. Locate and click on Microsoft Silverlight, then click Uninstall.


3 Answers

The Silverlight control only has an IsVersionSupported function, which returns true / false when you give it a version number, e.g.:

if(slPlugin.isVersionSupported("2.0")) {
  alert("I haz some flavour of Silverlight 2");

You can be as specific as you want when checking the build, since the version string can include all of the following:

  • major - the major number
  • minor - the minor number
  • build - the build number
  • revision - the revision number

So we can check for a specific build number as follows:

if(slPlugin.isVersionSupported("2.0.30523")) {
  alert("I haz Silverlight 2.0.30523, but could be any revision.");

Silverlight 1.0 Beta included a control.settings.version property, which was replaced with the isVersionSupported() method. The idea is that you shouldn't be programming against specific versions of Silverlight. Rather, you should be checking if the client has at least verion 1.0, or 2.0, etc.

That being said, you can get the Silverlight version number in Firefox by checking the Silverlight plugin description:

alert(navigator.plugins["Silverlight Plug-In"].description);

Shows '2.0.30523.8' on my computer.

Note that it is possible to brute force it by iterating through all released version numbers. Presumably that's what BrowserHawk does - they'll report which version of Silverlight the client has installed.

like image 125
Jon Galloway Avatar answered Oct 06 '22 01:10

Jon Galloway


I got this from http://forums.asp.net/p/1135746/1997617.aspx#1997617 which is the same link Stu gave you. I just included the code snippet.

Silverlight.isInstalled = function(d)
{
    var c = false, a = null;
    try
    {
        var b = null;
        if(Silverlight.ua.Browser == "MSIE")
            b = new ActiveXObject("AgControl.AgControl");
        else
            if(navigator.plugins["Silverlight Plug-In"])
            {
                a = document.createElement("div");
                document.body.appendChild(a);
                a.innerHTML = '<embed type="application/x-silverlight" />';
                b = a.childNodes[0]
            }

        if(b.IsVersionSupported(d))
            c = true;
        b = null;
        Silverlight.available = true
    }
    catch(e)
    {
        c=false
    }

    if(a)
        document.body.removeChild(a);
    return c
};
like image 32
Bryan Roth Avatar answered Oct 06 '22 01:10

Bryan Roth


found this site that detects the full version of silverlight- silverlight version (aka silverlightversion.com)

like image 20
Brady Moritz Avatar answered Oct 06 '22 01:10

Brady Moritz