有没有办法使用C#获取Windows Phone设备的IMEI号

时间:2017-07-12 13:29:19

标签: c# visual-studio-2015 uwp windows-phone-8.1 xamarin.uwp

有没有办法使用IMEI Number

获取Windows Phone设备的C#
  • windows-phone-8.1
  • UWP
  • xamarin.uwp
  • c#
  • visual-studio-2015

1 个答案:

答案 0 :(得分:0)

This 看起来像你正在寻找的......

[assembly: Xamarin.Forms.Dependency(typeof(UniqueIdWinPhone))]
namespace UniqueId.WinPhone
{
    public class UniqueIdWinPhone : IDevice
    {
        public string GetIdentifier()
        {
            byte[] myDeviceId = (byte[])Microsoft.Phone.Info.DeviceExtendedProperties.GetValue("DeviceUniqueId");
            return Convert.ToBase64String(myDeviceId);
        }
    }
}

这需要权限ID_CAP_IDENTITY_DEVICE