HdcpSession.ProtectionChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se déclenche lorsque le niveau de protection de l’instance HdcpSession change.
// 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)
Type d'événement
TypedEventHandler<HdcpSession,IInspectable>
Remarques
Pour obtenir un exemple d’utilisation de cet événement, consultez HdcpSession.