在WinRT中需要替代移动宽带API

时间:2015-04-10 06:25:22

标签: mobile mobile-broadband-api

我正在尝试使用移动宽带API接口在Windows RT平板电脑上获取IMEI等移动设备信息。
You can find the API reference here

我打算做一个控制台应用程序来检索信息,如下面的示例所示。但我无法在WinRT中找到MbnApi命名空间。

我知道它在WinRT中不可用。如果您有任何人知道或拥有相同的托管代码或DLL,请指出我正确的方向。

代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using MbnApi;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            MbnInterfaceManager mbnInfMgr = new MbnInterfaceManager();
            IMbnInterfaceManager infMgr = (IMbnInterfaceManager)mbnInfMgr;


            MbnConnectionManager mbnConnectionMgr = new MbnConnectionManager();
            IMbnConnectionManager ImbnConnectionMgr = (IMbnConnectionManager)mbnConnectionMgr;


            IMbnConnection[] connections = (IMbnConnection[])ImbnConnectionMgr.GetConnections();
            foreach (IMbnConnection conn in connections)
            {
                IMbnInterface mobileInterface = infMgr.GetInterface(conn.InterfaceID) as IMbnInterface;
                MBN_INTERFACE_CAPS caps = mobileInterface.GetInterfaceCapability();

                MBN_PROVIDER provider = mobileInterface.GetHomeProvider();
                Console.WriteLine("Device Id :" + caps.deviceID);
                Console.WriteLine("DataClass: " + caps.cellularClass);
                Console.WriteLine("Manufacturer: " + caps.manufacturer);
                Console.WriteLine("Model : " + caps.model);
                Console.WriteLine("Firmware Version: " + caps.firmwareInfo);

            }
            Console.ReadKey(true);
        }
    }
}

1 个答案:

答案 0 :(得分:0)

正如您所说,Windows Mobile Broadband API仅适用于Windows桌面。

以下是您在Metro / WinRT区域寻找的内容:Win RT Mobile Broadband APIs.

还有一些有关设备枚举的有用信息,以及您可能需要的其他信息here.