Compartir a través de


PlayToReceiver.NotifyRateChange(Double) Método

Definición

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

public:
 virtual void NotifyRateChange(double rate) = NotifyRateChange;
void NotifyRateChange(double const& rate);
public void NotifyRateChange(double rate);
function notifyRateChange(rate)
Public Sub NotifyRateChange (rate As Double)

Parámetros

rate
Double

double

Nuevo valor de la velocidad de 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.

void VideoPlayer_RateChanged(object sender, RateChangedRoutedEventArgs e)
{
    if (receiver != null)
        receiver.NotifyRateChange(VideoPlayer.PlaybackRate);
}
Sub VideoPlayer_RateChanged()
    If receiver IsNot Nothing Then
        receiver.NotifyRateChange(VideoPlayer.PlaybackRate)
    End If
End Sub

Se aplica a

Consulte también