Compartir a través de


PlayToReceiver.NotifyTimeUpdate(TimeSpan) Método

Definición

Notifica al receptor Reproducir a que la ubicación horaria de la reproducción de audio o vídeo ha cambiado.

public:
 virtual void NotifyTimeUpdate(TimeSpan currentTime) = NotifyTimeUpdate;
void NotifyTimeUpdate(TimeSpan const& currentTime);
public void NotifyTimeUpdate(System.TimeSpan currentTime);
function notifyTimeUpdate(currentTime)
Public Sub NotifyTimeUpdate (currentTime As TimeSpan)

Parámetros

currentTime
TimeSpan TimeSpan

Nueva ubicación de hora de la reproducción.

Requisitos de Windows

Características de aplicaciones
privateNetworkClientServer

Comentarios

Para obtener un ejemplo de cómo crear un receptor de reproducción de software, consulte Conversión multimedia.

async void receiver_TimeUpdateRequested(
    Windows.Media.PlayTo.PlayToReceiver sender,
    object args)
{
    await dispatcher.RunAsync(
        Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
        {
            if (VideoPlayer.Position != null)
                receiver.NotifyTimeUpdate(VideoPlayer.Position);
        });
}
Async Sub receiver_TimeUpdateRequested(
    sender As Windows.Media.PlayTo.PlayToReceiver,
    args As Object)

    Await Dispatcher.RunAsync(
        Windows.UI.Core.CoreDispatcherPriority.Normal,
        Sub()
            receiver.NotifyTimeUpdate(VideoPlayer.Position)
        End Sub)
End Sub

Se aplica a

Consulte también