Pages

Saturday, September 10, 2011

Get your Divice Serial Number(ESN)

Hi all.. So this time i got a work to get a Divice serial number for some securites pourpose. it was not a very big effort to getit done .. it was so easy .. i have put one sample application to Get ESN number.. Look into it for your reference.
please check the little application  :)


 //Symbol.ResourceCoordination class
TerminalInfo terminalIfo = new TerminalInfo();
if (!string.IsNullOrEmpty(terminalIfo.ESN))
{
label1.Text = terminalIfo.ESN;
}
else
{
label1.Text = "Not able to Get ESN";
}


Note: You Need To Refer Symbol & Symbol.ResourceCoordination.dll

No comments:

Post a Comment