I tried to get IP adress from DNS by using
IPAddress[] ip = Dns.GetHostAddresses("www.google.com");
in univesal c# windows app.
But it shows me error
Error CS0103 The name 'Dns' does not exist in the current context
I tried it in console app, it works perfectly. Namespace System.Net doesnt contain Dns in win 10 universal app. Could you tell me, where is problem or another solution?
My CODE
using System.Net;
public MainPage()
{
this.InitializeComponent();
}
private void button_Click(object sender, RoutedEventArgs e)
{
string zaznam = In.Text;
IPAddress[] ip = Dns.GetHostAddresses("www.google.com");
}
what happens when you do the following instead ConsoleApp
or if there are more Ip addresses you can do the following
The error is correct. System.Net.Dns is not available in the .Net Framework for Windows Runtime.
You can use the Windows Runtime classes instead: Call Windows.Networking.Sockets.DatagramSocket.GetEndpointPairsAsync then examine the returned EndpointPairs