PlayToReceiver.NotifyRateChange(Double) Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
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