How can I get the MAC Address using only the compact framework?
|
|
1.4 of the OpenNETCF code gets the information from the following P/Invoke call:
The physical address (returned as MAC address) I think is around about index 400 - 408 of the byte array after the call. So you can just use that directly if you don't want to use OpenNETCF (why though? OpenNETCF rocks more than stone henge!) Wonderful P/Invoke.net gives a full example here. Oh and to properly answer your question:
You cant. That's life with CF, if you want some fun try sending data with a socket synchronously with a timeout. :D |
|||
|
|
|
|
Add a reference to System.Management.dll and use something like:
|
||
|
|
|
|
Here are the first three hits from a Google search for "MAC address in Compact Framework:
Did none of those help? Two out of three point to OpenNETCF as a way to do it. |
||
|
|
|
|
I can't use WMI or install OpenNETCF. Is there another way using with ONLY the Compact Framework? |
||
|
|
|
|
See my answer to this similar question... As far as I can see from the docs the System.Net.NetworkInformation.NetworkInterface class is supported in the compact framework, so it should meet your needs. |
||
|
|
|
|
If you can access the registry, try to find your adapter MAC Address under the It may be a quick and dirty solution that doesn't involve the use of WMI or OpenNETCF ... |
||
|
