WindowsFormsApplicationBase.NetworkAvailabilityChanged Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the network availability changes.
public:
event Microsoft::VisualBasic::Devices::NetworkAvailableEventHandler ^ NetworkAvailabilityChanged;
public event Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler NetworkAvailabilityChanged;
member this.NetworkAvailabilityChanged : Microsoft.VisualBasic.Devices.NetworkAvailableEventHandler
Public Custom Event NetworkAvailabilityChanged As NetworkAvailableEventHandler
Event Type
Examples
This example calls the SetConnectionStatus
method of the default Form1
class when the network availability changes.
You must enter the code in the Code Editor window for application events. To access this window, follow the instructions from this topic's Remarks section.
The project should have a form named Form1
. It should have a method named SetConnectionStatus
that takes a Boolean
parameter.
Private Sub MyApplication_NetworkAvailabilityChanged(
sender As Object,
e As Microsoft.VisualBasic.Devices.NetworkAvailableEventArgs
) Handles Me.NetworkAvailabilityChanged
My.Forms.Form1.SetConnectionStatus(e.IsNetworkAvailable)
End Sub
Remarks
An application raises the NetworkAvailabilityChanged
event every time that the availability of the network changes. You can use the IsNetworkAvailable property of the e
parameter to get the new state of the network connection. To get the current state of the network connection, use the IsAvailable property.
This event is raised on the application's main thread with the other user-interface events. This enables the event handler to access directly the application's UI. However, if the application is busy handling another user-interface event when this event is raised, this event cannot be processed until the other event handler finishes or calls the DoEvents method.
The NetworkAvailabilityChanged event provides the same functionality as this event but is available for all application types.
The code for the NetworkAvailabilityChanged
event handler is stored in the ApplicationEvents.vb file, which is hidden by default.
To access the Code Editor window for application events |
1. Have a project selected in Solution Explorer. Click Properties on the Project menu. 2. Click the Application tab. 3. Click the View Application Events button to open the Code Editor. For more information, see Application Page, Project Designer (Visual Basic). |
Note
Many network hubs will provide a network connection even if the hub is disconnected from a larger network. Consequently, for wired connections, this event indicates change in the connection between the computer and a hub.
Availability by Project Type
Project type | Available |
---|---|
Windows Forms Application | Yes |
Class Library | No |
Console Application | No |
Windows Forms Control Library | No |
Web Control Library | No |
Windows Service | No |
Web Site | No |