MseSourceBuffer.Updated 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于 MseSourceBuffer 更新時。
// Register
event_token Updated(TypedEventHandler<MseSourceBuffer, IInspectable const&> const& handler) const;
// Revoke with event_token
void Updated(event_token const* cookie) const;
// Revoke with event_revoker
MseSourceBuffer::Updated_revoker Updated(auto_revoke_t, TypedEventHandler<MseSourceBuffer, IInspectable const&> const& handler) const;
public event TypedEventHandler<MseSourceBuffer,object> Updated;
function onUpdated(eventArgs) { /* Your code */ }
mseSourceBuffer.addEventListener("updated", onUpdated);
mseSourceBuffer.removeEventListener("updated", onUpdated);
- or -
mseSourceBuffer.onupdated = onUpdated;
Public Custom Event Updated As TypedEventHandler(Of MseSourceBuffer, Object)
事件類型
TypedEventHandler<MseSourceBuffer,IInspectable>