PlayToReceiver.NotifyEnded Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Notifies the Play To receiver that the audio or video playback has ended.
public:
virtual void NotifyEnded() = NotifyEnded;
void NotifyEnded();
public void NotifyEnded();
function notifyEnded()
Public Sub NotifyEnded ()
Windows requirements
App capabilities |
privateNetworkClientServer
|
Remarks
For an example of creating a software Play To receiver, see Media casting.
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