MseSourceBuffer.UpdateEnded Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the MseSourceBuffer update has ended.
// Register
event_token UpdateEnded(TypedEventHandler<MseSourceBuffer, IInspectable const&> const& handler) const;
// Revoke with event_token
void UpdateEnded(event_token const* cookie) const;
// Revoke with event_revoker
MseSourceBuffer::UpdateEnded_revoker UpdateEnded(auto_revoke_t, TypedEventHandler<MseSourceBuffer, IInspectable const&> const& handler) const;
public event TypedEventHandler<MseSourceBuffer,object> UpdateEnded;
function onUpdateEnded(eventArgs) { /* Your code */ }
mseSourceBuffer.addEventListener("updateended", onUpdateEnded);
mseSourceBuffer.removeEventListener("updateended", onUpdateEnded);
- or -
mseSourceBuffer.onupdateended = onUpdateEnded;
Public Custom Event UpdateEnded As TypedEventHandler(Of MseSourceBuffer, Object)
Event Type
TypedEventHandler<MseSourceBuffer,IInspectable>