SysHolographicWindowingEnvironment.IsProtectedContentPresentChanged 事件

定义

当受保护内容变得存在或不存在时引发的事件。

重要

此 API 仅适用于 Windows 操作系统的组件。 对于所有其他进程,对这些 API 的调用将在运行时失败。 这些 API 可能会在将来的 Windows 版本中修改或删除。

// Register
event_token IsProtectedContentPresentChanged(TypedEventHandler<SysHolographicWindowingEnvironment, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
SysHolographicWindowingEnvironment::IsProtectedContentPresentChanged_revoker IsProtectedContentPresentChanged(auto_revoke_t, TypedEventHandler<SysHolographicWindowingEnvironment, IInspectable const&> const& handler) const;
public event TypedEventHandler<SysHolographicWindowingEnvironment,object> IsProtectedContentPresentChanged;
function onIsProtectedContentPresentChanged(eventArgs) { /* Your code */ }
sysHolographicWindowingEnvironment.addEventListener("isprotectedcontentpresentchanged", onIsProtectedContentPresentChanged);
sysHolographicWindowingEnvironment.removeEventListener("isprotectedcontentpresentchanged", onIsProtectedContentPresentChanged);
- or -
sysHolographicWindowingEnvironment.onisprotectedcontentpresentchanged = onIsProtectedContentPresentChanged;
Public Custom Event IsProtectedContentPresentChanged As TypedEventHandler(Of SysHolographicWindowingEnvironment, Object) 

事件类型

适用于