This topic has not yet been rated - Rate this topic

DeviceNetworkInformation.IsWiFiEnabled Property

July 26, 2012

Gets a value that indicates whether the network is Wi-Fi enabled.

Namespace:  Microsoft.Phone.Net.NetworkInformation
Assembly:  Microsoft.Phone (in Microsoft.Phone.dll)
public static bool IsWiFiEnabled { get; }

Property Value

Type: System.Boolean
true if the network is Wi-Fi enabled; otherwise, false.

Wi-Fi must have a radio connection and be correctly configured.

The following example demonstrates getting the value of the IsWiFiEnabled property and displaying it in a message box. In this example, you put the code in a button click event for testing purposes only. In your own applications, you can access the IsWiFiEnabled property wherever you need it.

This example assumes that you have a Windows Phone application with a button named button1. This example also assumes that you have added the following statement to your code window.

using Microsoft.Phone.Net.NetworkInformation;
private void button1_Click(object sender, RoutedEventArgs e)
{
    System.Text.StringBuilder sb = new System.Text.StringBuilder();

    sb.Append("Network available:  ");
    sb.AppendLine(DeviceNetworkInformation.IsNetworkAvailable.ToString());

    sb.Append("Cellular enabled:  ");
    sb.AppendLine(DeviceNetworkInformation.IsCellularDataEnabled.ToString());

    sb.Append("Roaming enabled:  ");
    sb.AppendLine(DeviceNetworkInformation.IsCellularDataRoamingEnabled.ToString());

    sb.Append("Wi-Fi enabled:  ");
    sb.AppendLine(DeviceNetworkInformation.IsWiFiEnabled.ToString());

    MessageBox.Show(sb.ToString());
}

Windows Phone OS

Supported in: 7.1

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.