Skip to content

Instantly share code, notes, and snippets.

@kazuakix
Last active August 29, 2015 14:04
Show Gist options
  • Save kazuakix/f86e55229e6d7dc14cab to your computer and use it in GitHub Desktop.
Save kazuakix/f86e55229e6d7dc14cab to your computer and use it in GitHub Desktop.
public void GetConnection()
{
var cp = NetworkInformation.GetInternetConnectionProfile();
Debug.WriteLine("Profile Name : " + cp.ProfileName);
// 接続状況
var cl = cp.GetNetworkConnectivityLevel();
Debug.WriteLine("Connectivity Level: " + cl);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment