在Windows Phone 7中获取IMEI号码 [英] Getting IMEI number in windows phone 7

查看:100
本文介绍了在Windows Phone 7中获取IMEI号码的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:
在wp7中找到IMEI否?

Possible Duplicate:
Find IMEI no in wp7?

在Windows Phone 7中是否有任何获取设备IMEI编号的API,我可以通过使用DeviceExtendedProperties.GetValue("DeviceUniqueId")将其获取为设备唯一ID",但是我需要获取IMEI.

Is there any api that gets the device IMEI number in windows phone 7, all i can get it "device unique id" by using DeviceExtendedProperties.GetValue("DeviceUniqueId"), but i need to get IMEI.

推荐答案

cc:http://www.cnblogs.com/xjb/archive/2007/02/05/640360.html

cc:http://www.cnblogs.com/xjb/archive/2007/02/05/640360.html

以下代码未经我测试.

public struct GeneralInfo
{
    public string Manufacturer;
    public string Model;
    public string Revision;
    public string SerialNumber;
    public string SubscriberNumber;
}

/// <summary>
/// Tapi control class
/// </summary>
public class ControlTapi
{

    [DllImport("cellcore.dll")]
    private static extern int lineGetGeneralInfo(IntPtr hLigne,byte[]lpLineGeneralInfo );

    /// <summary>
    /// Invoke cellcore.dll to get info of sim
    /// </summary>
    /// <param name="l"></param>
    /// <returns></returns>
    private  GeneralInfo GetGeneralInfo(Line l)
    {
        GeneralInfo lgi = new GeneralInfo();
        byte[] buffer = new byte[512];
        BitConverter.GetBytes(512).CopyTo(buffer, 0);

        if (lineGetGeneralInfo(l.hLine, buffer) != 0)
        {
            throw new System.ComponentModel.Win32Exception(System.Runtime.InteropServices.Marshal.GetLastWin32Error(), "TAPI Error: " + System.Runtime.InteropServices.Marshal.GetLastWin32Error().ToString("X"));
        }

        int subscsize = BitConverter.ToInt32(buffer, 44);
        int subscoffset = BitConverter.ToInt32(buffer, 48);
        lgi.SubscriberNumber = System.Text.Encoding.Unicode.GetString(buffer, subscoffset, subscsize).ToString();
        lgi.SubscriberNumber = lgi.SubscriberNumber.Replace("\0", "");
        return lgi;

    }



    /// <summary>
    /// GET IMSI of SIM Card
    /// </summary>
    /// <returns></returns>
    public static string  GetIMSINumber()
    {
        string result = "";
        try
        {
            Tapi t = new Tapi();
            t.Initialize();
            Line l = t.CreateLine(0, LINEMEDIAMODE.INTERACTIVEVOICE, OpenNETCF.Tapi.LINECALLPRIVILEGE.MONITOR);
            ControlTapi ctapi = new ControlTapi();
            GeneralInfo gi = ctapi.GetGeneralInfo(l);

            result =  gi.SubscriberNumber;
            l.Dispose();
            t.Shutdown();

        }
        catch// (Exception ex)
        {
            result = "";
        }

        return result;

    }

    /// <summary>
    /// Get IMEI
    /// </summary>
    /// <returns></returns>
    public static string GetIMEINumber()
    {
        string result = "";
        try
        {
            Tapi t = new Tapi();
            t.Initialize();
            Line l = t.CreateLine(0, LINEMEDIAMODE.INTERACTIVEVOICE, OpenNETCF.Tapi.LINECALLPRIVILEGE.MONITOR);
            ControlTapi ctapi = new ControlTapi();
            GeneralInfo gi = ctapi.GetGeneralInfo(l);
            result = gi.SerialNumber;
            l.Dispose();
            t.Shutdown();

        }
        catch// (Exception ex)
        {
            result = "";
        }

        return result;
    }

}

这篇关于在Windows Phone 7中获取IMEI号码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆