Compartir a través de


ContentSite.RequestedStateChanged Evento

Definición

Se produce cuando un contentIsland de realiza una nueva solicitud a su ContentSite asociado.

// Register
event_token RequestedStateChanged(TypedEventHandler<ContentSite, ContentSiteRequestedStateChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ContentSite::RequestedStateChanged_revoker RequestedStateChanged(auto_revoke_t, TypedEventHandler<ContentSite, ContentSiteRequestedStateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<ContentSite,ContentSiteRequestedStateChangedEventArgs> RequestedStateChanged;
function onRequestedStateChanged(eventArgs) { /* Your code */ }
contentSite.addEventListener("requestedstatechanged", onRequestedStateChanged);
contentSite.removeEventListener("requestedstatechanged", onRequestedStateChanged);
- or -
contentSite.onrequestedstatechanged = onRequestedStateChanged;
Public Custom Event RequestedStateChanged As TypedEventHandler(Of ContentSite, ContentSiteRequestedStateChangedEventArgs) 

Tipo de evento

Comentarios

El propietario de ContentSite (DesktopSiteBridge) puede examinar las propiedades locales (como RequestedSize), decidir la directiva y, a continuación, configurar información (como ActualSize) para enviar a la ContentIsland.

Se aplica a