Compartilhar via


PlayToReceiver.NotifyTimeUpdate(TimeSpan) Método

Definição

Notifica o receptor Play To de que o local de hora da reprodução de áudio ou vídeo foi alterado.

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

O novo local de hora da reprodução.

Requisitos do Windows

Funcionalidades do aplicativo
privateNetworkClientServer

Comentários

Para obter um exemplo de criação de um receptor play to de software, consulte Conversão de mídia.

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

Aplica-se a

Confira também