Freigeben über


WebAccountMonitor.AccountPictureUpdated Ereignis

Definition

Wird ausgelöst, wenn sich das Bild eines überwachten WebAccounts ändert.

// Register
event_token AccountPictureUpdated(TypedEventHandler<WebAccountMonitor, WebAccountEventArgs const&> const& handler) const;

// Revoke with event_token
void AccountPictureUpdated(event_token const* cookie) const;

// Revoke with event_revoker
WebAccountMonitor::AccountPictureUpdated_revoker AccountPictureUpdated(auto_revoke_t, TypedEventHandler<WebAccountMonitor, WebAccountEventArgs const&> const& handler) const;
public event TypedEventHandler<WebAccountMonitor,WebAccountEventArgs> AccountPictureUpdated;
function onAccountPictureUpdated(eventArgs) { /* Your code */ }
webAccountMonitor.addEventListener("accountpictureupdated", onAccountPictureUpdated);
webAccountMonitor.removeEventListener("accountpictureupdated", onAccountPictureUpdated);
- or -
webAccountMonitor.onaccountpictureupdated = onAccountPictureUpdated;
Public Custom Event AccountPictureUpdated As TypedEventHandler(Of WebAccountMonitor, WebAccountEventArgs) 

Ereignistyp

Windows-Anforderungen

Gerätefamilie
Windows 10, version 2004 (eingeführt in 10.0.19041.0)
API contract
Windows.Foundation.UniversalApiContract (eingeführt in v10.0)

Hinweise

Wenn ein Bild aktualisiert wird, löst WAM sowohl die Ereignisse Updated als auch AccountPictureUpdated aus, sodass Benutzer, die Bildupdates durch Lauschen auf das Updateereignis nachverfolgt haben, nicht zurücktreten.

In der Nutzlast der Ereignisse ist eine neue boolesche Eigenschaft "IsPictureUpdated" vorhanden, mit der Aufrufer, die nur auf AccountUpdated-Ereignisse lauschen, zwischen einem Bildupdate und einem normalen Kontoupdate unterscheiden können.

Gilt für:

Weitere Informationen