Compartilhar via


PlayToReceiver.NotifyRateChange(Double) Método

Definição

Notifica o receptor Play To de que a taxa de reprodução de áudio ou vídeo foi alterada.

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

O novo valor da taxa de 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.

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

Aplica-se a

Confira também