HdcpSession.ProtectionChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当 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)
事件类型
TypedEventHandler<HdcpSession,IInspectable>
注解
有关此事件的用法示例,请参阅 HdcpSession。