虽然在Windows 10上使用Ras库成功拨号连接,但Internet连接失败

时间:2016-01-19 17:37:08

标签: c# windows ras

我正在使用DotRas库,创建RasDevice,Rasentry,将Rasentry添加到RasPhoneBook并最终调用RasDialer.Dial()。

RasDevice device = RasDevice.GetDevices().Where(o => o.Name == "(PPPOE)" && o.DeviceType == RasDeviceType.PPPoE).FirstOrDefault();
            if (device != null)
            {
                MessageBox.Show("Found " + device.Name.ToString() + device.DeviceType.ToString(), "hah!", MessageBoxButtons.OK);
            }
            else
            {
                MessageBox.Show("Device not found", "Error", MessageBoxButtons.OK);
            }

           RasEntry entry = RasEntry.CreateDialUpEntry("Dialupnamexyz", "+880000000", device);
            this.rasPhoneBook1.Entries.Add(entry);


       this.rasDialer1.EntryName = EntryNameSet;
            this.rasDialer1.PhoneBookPath = RasPhoneBook.GetPhoneBookPath(RasPhoneBookType.AllUsers); ;
            this.rasDialer1.Credentials = new System.Net.NetworkCredential(userName, userPassword);
            this.rasDialer1.DialAsync();

建立连接。但是,当我尝试使用Internet Explorer时,它就失效了。

我尝试手动拨打以编程方式创建的条目,它表示已建立连接。但是再次在互联网浏览器中它的下来。

我正在使用Windows 10.这里有什么我想念的吗? 谢谢你的帮助。

0 个答案:

没有答案