Partager via


PlayToReceiver.NotifyTimeUpdate(TimeSpan) Méthode

Définition

Avertit le récepteur Lire sur que l’emplacement horaire de la lecture audio ou vidéo a changé.

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)

Paramètres

currentTime
TimeSpan TimeSpan

Nouvel emplacement horaire de la lecture.

Configuration requise pour Windows

Fonctionnalités de l’application
privateNetworkClientServer

Remarques

Pour obtenir un exemple de création d’un récepteur de lecture de logiciel, consultez Diffusion multimé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

S’applique à

Voir aussi