Compartir a través de


PlayToReceiver.NotifySeeked Método

Definición

Notifica al receptor Reproducir para que el elemento de reproducción de audio o vídeo se haya iniciado en una nueva ubicación de reproducción.

public:
 virtual void NotifySeeked() = NotifySeeked;
void NotifySeeked();
public void NotifySeeked();
function notifySeeked()
Public Sub NotifySeeked ()

Requisitos de Windows

Características de aplicaciones
privateNetworkClientServer

Comentarios

Para obtener un ejemplo de creación de un receptor play to de software, consulte Conversión multimedia.

void VideoPlayer_SeekCompleted(object sender, RoutedEventArgs e)
{
    if (receiver != null)
    {
        if (!seeking)
            receiver.NotifySeeking();
        receiver.NotifySeeked();
        seeking = false;
    }
}
Sub VideoPlayer_SeekCompleted()
    If receiver IsNot Nothing Then
        If Not seeking Then
            receiver.NotifySeeking()
            receiver.NotifySeeked()
            seeking = False
        End If
    End If
End Sub

Se aplica a

Consulte también