The code for this article can be downloaded here.
Check network state
For this article, I’ve put together a very basic interface that can be seen below. The application knows whether it’s online or offline. Also, it knows whether or not it’s running inside the browser or not.


The XAML for this interface is shown below.
<Border BorderBrush="Red" Name="MainBorder"
BorderThickness="4" Width="400" Height="200">
<StackPanel Orientation="Vertical">
<TextBlock FontSize="32" Name="ConnectionStatusTextBlock"
HorizontalAlignment="Center" VerticalAlignment="Center">
</TextBlock>
<TextBlock FontSize="32" Name="ApplicationStatusTextBlock"
HorizontalAlignment="Center" VerticalAlignment="Center"></TextBlock>
</StackPanel>
</Border>
Checking changes in the network can be done using the NetworkChange class. This is a very simple class: it defines just one event called NetworkAddressChanged. This event is triggered by Silverlight automatically when it notices that the IP address has changed, meaning that either a network card was plugged-in or unplugged. To react to changes, we need to subscribe to this event. In the sample, we are doing so using the following code:
NetworkChange.NetworkAddressChanged += new NetworkAddressChangedEventHandler(NetworkChange_NetworkAddressChanged);
void NetworkChange_NetworkAddressChanged(object sender, EventArgs e)
{
CheckNetworkStatus();
}
private void CheckNetworkStatus()
{
if (NetworkInterface.GetIsNetworkAvailable())
{
MainBorder.BorderBrush = new SolidColorBrush(Colors.Green);
ConnectionStatusTextBlock.Text = "Connected";
}
else
Read more: SilverlightShow
QR: