MseSourceBufferList.SourceBufferRemoved 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 a MseSourceBuffer object is removed.
// Register
event_token SourceBufferRemoved(TypedEventHandler<MseSourceBufferList, IInspectable const&> const& handler) const;
// Revoke with event_token
void SourceBufferRemoved(event_token const* cookie) const;
// Revoke with event_revoker
MseSourceBufferList::SourceBufferRemoved_revoker SourceBufferRemoved(auto_revoke_t, TypedEventHandler<MseSourceBufferList, IInspectable const&> const& handler) const;
public event TypedEventHandler<MseSourceBufferList,object> SourceBufferRemoved;
function onSourceBufferRemoved(eventArgs) { /* Your code */ }
mseSourceBufferList.addEventListener("sourcebufferremoved", onSourceBufferRemoved);
mseSourceBufferList.removeEventListener("sourcebufferremoved", onSourceBufferRemoved);
- or -
mseSourceBufferList.onsourcebufferremoved = onSourceBufferRemoved;
Public Custom Event SourceBufferRemoved As TypedEventHandler(Of MseSourceBufferList, Object)