Compartir a través de


HdcpSession.ProtectionChanged Evento

Definición

Se desencadena cuando cambia el nivel de protección de la instancia de HdcpSession .

// Register
event_token ProtectionChanged(TypedEventHandler<HdcpSession, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
HdcpSession::ProtectionChanged_revoker ProtectionChanged(auto_revoke_t, TypedEventHandler<HdcpSession, IInspectable const&> const& handler) const;
public event TypedEventHandler<HdcpSession,object> ProtectionChanged;
function onProtectionChanged(eventArgs) { /* Your code */ }
hdcpSession.addEventListener("protectionchanged", onProtectionChanged);
hdcpSession.removeEventListener("protectionchanged", onProtectionChanged);
- or -
hdcpSession.onprotectionchanged = onProtectionChanged;
Public Custom Event ProtectionChanged As TypedEventHandler(Of HdcpSession, Object) 

Tipo de evento

Comentarios

Para obtener un ejemplo de uso de este evento, consulte HdcpSession.

Se aplica a