다음을 통해 공유


MseSourceBufferList.SourceBufferRemoved 이벤트

정의

MseSourceBuffer 개체가 제거될 때 발생합니다.

// 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) 

이벤트 유형

적용 대상