我需要在 Windows 8 中使用我的应用程序访问设备 MAC ID。
我知道您可以使用 NetworkInformation 类来获取某种网络 ID。
var networkProfiles = Windows.Networking.Connectivity.NetworkInformation.GetConnectionProfiles();
var adapter = networkProfiles[0].NetworkAdapter;
string networkAdapterId = adapter.NetworkAdapterId.ToString();
但是,这并没有给我设备的 MAC id。
我的问题是,这些 ID 是否唯一,它们是否容易根据用户硬件而变化,以及如果用户使用平板电脑,这种硬件变化的可能性有多大。
此外,如果无法在 Windows 8 中获取 MAC id,是否可以在 Windows 8.1 中获取它?
谢谢