Windows 7 Mobile Broadband API - сбой без исключения

Следующий код завершается до того, как завершится без исключения:

    private void Form1_Load(object sender, EventArgs e)
    {
        MbnConnectionManager connectionManager = new MbnConnectionManager();
        IMbnConnectionManager connectionManagerInterface = (IMbnConnectionManager)connectionManager;
       IMbnConnection[] connections = (IMbnConnection[])connectionManagerInterface.GetConnections();


       (IMbnConnectionProfileManager)connectionProfile;
        MbnApi.MbnInterfaceManager interfaceManager = new MbnInterfaceManager();
        MbnApi.IMbnInterfaceManager interfaceManagerInterface = (IMbnInterfaceManager)interfaceManager;

        IMbnInterface[] interfaces = interfaceManagerInterface.GetInterfaces() as IMbnInterface[];

        foreach (IMbnInterface mbnInterface in interfaces)
        {
            MBN_PROVIDER homeProvider = mbnInterface.GetHomeProvider(out homeProvider);
        }

    }

Эта линия, кажется, вызывает сбой -

MBN_PROVIDER homeProvider = mbnInterface.GetHomeProvider(out homeProvider);

Почему это происходит, и есть ли способ увидеть, что на самом деле происходит внутри Mobile Broadband API?

1 ответ

Решение

Вы зарегистрировали широкополосное устройство в вашей системе?

  1. Откройте свою сеть и центр обмена и посмотрите, есть ли устройство мобильного широкополосного соединения.
  2. Попробуйте выполнить следующую команду: netsh mbn show interfaces
Другие вопросы по тегам