在Phone 8.1中,您可以使用HardwareIdentification来获取设备ID,即使documentation说它存在于 table 面应用程序中,但对于UWP应用程序却不存在。

c# - UWP应用中的设备ID(阈值1)-LMLPHP

获取UWP的硬件ID的替代方法或方法是什么?

最佳答案

将应用程序从Windows (Phone) 8(.1)迁移到Windows Universal Platform时,您会遇到一个常见问题。

您没有看到HardwareIdentification的原因很简单:您没有引用所需的源!

您只会看到AnalyticsInfoAnalyticsVersionInfo。这是因为它们是通用设备系列的一部分,如最底部的文档页面(https://msdn.microsoft.com/en-us/library/windows/apps/windows.system.profile.analyticsinfo.aspx)所述。

但是,HardwareIdentification不属于通用设备系列,而是DesktopMobile系列的一部分,正如Adriano在其评论中所述。

为了使信息可用,您必须将引用添加到特定的扩展名:
c# - UWP应用中的设备ID(阈值1)-LMLPHP

之后,请确保在调用之前检查类型是否存在:

if (Windows.Foundation.Metadata.ApiInformation
    .IsTypePresent("Windows.System.Profile.HardwareIdentification"))

关于c# - UWP应用中的设备ID(阈值1),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32330759/

10-16 20:55
查看更多