TimedTextSource.Resolved 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 TimedTextSource is resolved.
// Register
event_token Resolved(TypedEventHandler<TimedTextSource, TimedTextSourceResolveResultEventArgs const&> const& handler) const;
// Revoke with event_token
void Resolved(event_token const* cookie) const;
// Revoke with event_revoker
TimedTextSource::Resolved_revoker Resolved(auto_revoke_t, TypedEventHandler<TimedTextSource, TimedTextSourceResolveResultEventArgs const&> const& handler) const;
public event TypedEventHandler<TimedTextSource,TimedTextSourceResolveResultEventArgs> Resolved;
function onResolved(eventArgs) { /* Your code */ }
timedTextSource.addEventListener("resolved", onResolved);
timedTextSource.removeEventListener("resolved", onResolved);
- or -
timedTextSource.onresolved = onResolved;
Public Custom Event Resolved As TypedEventHandler(Of TimedTextSource, TimedTextSourceResolveResultEventArgs)