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。