PlayToReceiver.NotifyRateChange(Double) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Avertit le récepteur Lire sur que la vitesse de lecture audio ou vidéo a changé.
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)
Paramètres
- rate
-
Double
double
Nouvelle valeur du taux de 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.
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