WindowsUpdateManager.ScanningStateChanged 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.
Gerado quando o estado de verificação é alterado.
// Register
event_token ScanningStateChanged(TypedEventHandler<WindowsUpdateManager, IInspectable const&> const& handler) const;
// Revoke with event_token
void ScanningStateChanged(event_token const* cookie) const;
// Revoke with event_revoker
WindowsUpdateManager::ScanningStateChanged_revoker ScanningStateChanged(auto_revoke_t, TypedEventHandler<WindowsUpdateManager, IInspectable const&> const& handler) const;
public event TypedEventHandler<WindowsUpdateManager,object> ScanningStateChanged;
function onScanningStateChanged(eventArgs) { /* Your code */ }
windowsUpdateManager.addEventListener("scanningstatechanged", onScanningStateChanged);
windowsUpdateManager.removeEventListener("scanningstatechanged", onScanningStateChanged);
- or -
windowsUpdateManager.onscanningstatechanged = onScanningStateChanged;
Public Custom Event ScanningStateChanged As TypedEventHandler(Of WindowsUpdateManager, Object)
Tipo de evento
Comentários
Ao contrário do evento ScanCompleted , esse evento também é gerado quando uma verificação é iniciada; para que você possa aproveitá-la para detectar o início da atividade de verificação.