获取windows phone唯一id
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取windows phone唯一id相关的知识,希望对你有一定的参考价值。
don't forgot to add capability ID_CAP_IDENTIFY_DEVICE
private static string get_unique_id() { object uniqueId; var hexString = string.Empty; if (DeviceExtendedProperties.TryGetValue("DeviceUniqueId", out uniqueId)) hexString = BitConverter.ToString((byte[])uniqueId).Replace("-", string.Empty); return hexString; }
以上是关于获取windows phone唯一id的主要内容,如果未能解决你的问题,请参考以下文章
Windows Phone 8.1:设备唯一 ID 的 DeviceExtendedProperties 或 DeviceStatus