NetworkInformation.NetworkStatusChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque le status réseau change pour une connexion.
public:
static event NetworkStatusChangedEventHandler ^ NetworkStatusChanged;
// Register
static event_token NetworkStatusChanged(NetworkStatusChangedEventHandler const& handler) const;
// Revoke with event_token
static void NetworkStatusChanged(event_token const* cookie) const;
// Revoke with event_revoker
static NetworkInformation::NetworkStatusChanged_revoker NetworkStatusChanged(auto_revoke_t, NetworkStatusChangedEventHandler const& handler) const;
public static event NetworkStatusChangedEventHandler NetworkStatusChanged;
function onNetworkStatusChanged(eventArgs) { /* Your code */ }
Windows.Networking.Connectivity.NetworkInformation.addEventListener("networkstatuschanged", onNetworkStatusChanged);
Windows.Networking.Connectivity.NetworkInformation.removeEventListener("networkstatuschanged", onNetworkStatusChanged);
- or -
Windows.Networking.Connectivity.NetworkInformation.onnetworkstatuschanged = onNetworkStatusChanged;
Public Shared Custom Event NetworkStatusChanged As NetworkStatusChangedEventHandler