TimedTextSource.Resolved Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando se resuelve TimedTextSource .
// 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)