Skip to content

Instantly share code, notes, and snippets.

@prashantvc
Created November 17, 2013 14:07
Show Gist options
  • Save prashantvc/7513837 to your computer and use it in GitHub Desktop.
Save prashantvc/7513837 to your computer and use it in GitHub Desktop.
void PrintNetworkInfo(){
using (var wifi = (WifiManager)GetSystemService (Context.WifiService)) {
using (var dhcp = wifi.DhcpInfo) {
var gateway = dhcp.Gateway;
var ip = dhcp.IpAddress;
Console.WriteLine (Formatter.FormatIpAddress (gateway));
Console.WriteLine (Formatter.FormatIpAddress (ip));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment