MediaSource.StateChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando o estado atual do MediaSource é alterado.
// Register
event_token StateChanged(TypedEventHandler<MediaSource, MediaSourceStateChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void StateChanged(event_token const* cookie) const;
// Revoke with event_revoker
MediaSource::StateChanged_revoker StateChanged(auto_revoke_t, TypedEventHandler<MediaSource, MediaSourceStateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<MediaSource,MediaSourceStateChangedEventArgs> StateChanged;
function onStateChanged(eventArgs) { /* Your code */ }
mediaSource.addEventListener("statechanged", onStateChanged);
mediaSource.removeEventListener("statechanged", onStateChanged);
- or -
mediaSource.onstatechanged = onStateChanged;
Public Custom Event StateChanged As TypedEventHandler(Of MediaSource, MediaSourceStateChangedEventArgs)
Tipo de evento
Requisitos do Windows
Família de dispositivos |
Windows 10 (introduzida na 10.0.10586.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduzida na v2.0)
|