NetworkInformation.NetworkStatusChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a rede status é alterada para uma conexão.
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