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");
}