i know in windows phone 7, impossible imsi , imei.
is there way get imsi , imei in windows phone 8?
there no way imsi , imei number, can use device unique id.
use following code snippet device unique id.
namespace is
using microsoft.phone.info; object uniqueid; var hexstring = string.empty; if (deviceextendedproperties.trygetvalue("deviceuniqueid", out uniqueid)) hexstring = bitconverter.tostring((byte[])uniqueid).replace("-", string.empty); messagebox.show("mydeviceid:" + hexstring);
hope helps
Comments
Post a Comment