0

マネージドネイティブWiFiを使用して実装されたコードがあります。これは、画面に表示するために接続されたネットワークのプロファイルの詳細を取得するために使用されます。

 
               // Start the wireless configuration service if it is stopped
                startservice();
                WlanClient client = new WlanClient();
                bHasWiFi = false;
                string strConnectionStatus = Constants.BlankString;

                // Enumerate all interfaces
                foreach (WlanClient.WlanInterface wlanIface in client.Interfaces)
                {
                    bHasWiFi = true;
                    strConnectionStatus = wlanIface.InterfaceState.ToString();

                    // Check whether disconnected
                    if (strConnectionStatus == Constants.Disconnected)
                    {
                        IsConnected = false;
                        continue; //iterate to next interface if any
                    }
                    else
                    {
                        string strProfileName = wlanIface.CurrentConnection.profileName.ToString();
                        ErrorLog.WriteLogMsg("Connected Profile  : " + strProfileName);
                        strDefaultNetwork = wlanIface.CurrentConnection.wlanAssociationAttributes.dot11BssType.ToString();
                        ErrorLog.WriteLogMsg("Connected Network Type  : " + strDefaultNetwork);
                        if (strProfileName.Length != 0)
                        {
                            // Obtain Profile XML
                            string strXmlProfile = wlanIface.GetProfileXml(strProfileName);

                            // Read channel information if OS not Windows XP
                            if(strCurOS != Constants.WindowsXP)
                                intChannel = wlanIface.Channel;

                            // Extract profile information
                            GetNetworkProfileXML(ref IsConnected, ref strDefaultAuth, ref strDefaultSSID, ref strDefaultEnc, ref strDefaultKey, wlanIface, ref strXmlProfile);

                            // Process and store the profile data
                            GetDatfromProfiles(strDefaultNetwork, strDefaultAuth, strDefaultSSID, strDefaultEnc, strDefaultKey, strCurOS, intChannel);
                        }
                        else
                        {
                            ErrorLog.WriteLogMsg("Blank profile name");
                            IsConnected = false; // Set error flag
                        }
                        break;
                    }
                }

                // Error cases
                if (!IsConnected || !bHasWiFi)
                {
                    if (!bHasWiFi)
                        throw new Exception("Unable to enumerate the wireless interfaces");
                    else if (!IsConnected)
                        throw new Exception("WiFi is not configured or is disconnected");
                }
            }

このコードがVista/Windows 7で実行され、プロファイルが保存されずにネットワークに接続されると、GetProfileXMlメソッドはエラーをスローします。

01:18:12メソッド:ThrowIfError

01:18:12ログメッセージ:要素が見つかりません

01:18:12スタックトレース:NativeWifi.Wlan.ThrowIfError(Int32 win32ErrorCode)at NativeWifi.WlanClient.WlanInterface.GetProfileXml(String profileName)

また、VistaおよびWindows 7では、ユーザーが[自動的に接続]を選択しない場合、インフラストラクチャの接続中にプロファイルが保存されないことが確認されています。また、このオプションは接続中にユーザーに提供されないため、アドホックプロファイルが保存されることはありません。

保存されていない場合でも、接続されたプロファイルのXML /詳細を読み取る方法を知っている人はいますか?前もって感謝します。

4

1 に答える 1

1

接続が開始される前に通知に登録すると(ここを参照) 、wlan_notification_acm_connection_complete通知を受信したときに、WLAN_CONNECTION_NOTIFICATION_DATA構造のstrProfileXmlフィールドを調べることができるはずです 。

于 2012-01-10T07:17:58.280 に答える