Last active
August 29, 2015 14:04
-
-
Save kazuakix/f86e55229e6d7dc14cab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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