How to pass IPAddress to webBrowser control
This is my code but i don't know how to pass ip-address to webBrowser control.
IPHostEntry host;
string localIP = "?";
host = Dns.GetHostEntry(Dns.GetHostName());
foreach (string line in File.ReadAllLines("proxy.txt"))
{
IPAddress ip = IPAddress.Parse(line);
if (ip.AddressFamily.ToString() == "InterNetwork")
{
localIP = ip.ToString();
textBox1.Text = ip.ToString();
// This code doesn't work, it's just a hypothetical example:
webBrowser1.SourceIPAddress=ip;
webBrowser1.Navigate(textBox2.Text);
}
}
this is how i want to pass ip-address to webBrowser control
//The code doesn't work, it's just a hypothetical example:
webBrowser1.SourceIPAddress = ip;