Network Events
Sample
Monitor Network Events
Further Reading
Last updated
Last updated
// can the device connect to the internet:
NetworkAccess access = Device.Info.Networking.NetworkAccess;
// Cellular, WiFi, Ethernet, etc.
ConnectionProfile[] profiles = Device.Info.Networking.ConnectionProfiles;Device.Info.Networking.ConnectiivtyChanged += (s, e) =>
{
NetworkAccess access = e.NetworkAccess;
ConnectionProfile[] profiles = e.ConnectionProfiles;
};