vote up 1 vote down star

Is it possible to get the client's MAC address from a Silverlight app? It would be ideal if the solution works OOB too.

flag

Which Code Behind Language? C# oder VB.NET? – Henrik P. Hessel Jul 29 at 16:35
C# would be great but either will work. – James Cadd Jul 29 at 17:58
Which MAC address? What if they have more than one NIC? – John Saunders Aug 2 at 17:59

2 Answers

vote up 2 vote down

No, it is not possible to get the clients' MAC address in Silverlight 2 or Silverlight 3.

There's no p/invoke, trusted code, or BCL surface area for this.

link|flag
So there's no way to get the MAC from inside the browser? Not even a DOM hack or workaround? – James Cadd Aug 2 at 18:34
Silverlight definitely isn't the key here, but if you have an existing hack - getting it through an installed ActiveX control or plugin, having the server somehow inject it into the page, etc., then Silverlight can read it using the HTML interoperability feature. But be clear that there isn't a ManagementClass or any built-in functionality for this :-( – Jeff Wilcox Aug 2 at 18:37
vote up 0 vote down

With C# Code Behind :

ManagementClass oMClass = new ManagementClass ("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection colMObj = oMCLass.GetInstances();
foreach(ManagementObject objMO in colMObj)
{
     Console.WriteLine(objMO["MacAddress"].ToString());
}
link|flag
It doesn't look like System.Management is available in Silverlight. – James Cadd Jul 29 at 17:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.