PlayToReceiver.NotifyEnded 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 lecture audio ou vidéo est terminée.
public:
virtual void NotifyEnded() = NotifyEnded;
void NotifyEnded();
public void NotifyEnded();
function notifyEnded()
Public Sub NotifyEnded ()
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_MediaEnded(object sender, RoutedEventArgs e)
{
if (receiver != null)
{
receiver.NotifyEnded();
VideoPlayer.Stop();
}
}
Sub VideoPlayer_MediaEnded()
If receiver IsNot Nothing Then
receiver.NotifyEnded()
VideoPlayer.Stop()
End If
End Sub