PlayToReceiver.NotifyDurationChange(TimeSpan) 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 duration of the audio or video playback has changed.
public:
virtual void NotifyDurationChange(TimeSpan duration) = NotifyDurationChange;
void NotifyDurationChange(TimeSpan const& duration);
public void NotifyDurationChange(System.TimeSpan duration);
function notifyDurationChange(duration)
Public Sub NotifyDurationChange (duration As TimeSpan)
Parameters
Windows requirements
App capabilities |
privateNetworkClientServer
|
Remarks
For an example of creating a software Play To receiver, see Media casting.
void VideoPlayer_MediaOpened(object sender, RoutedEventArgs e)
{
if (receiver != null)
{
receiver.NotifyDurationChange(VideoPlayer.NaturalDuration.TimeSpan);
receiver.NotifyLoadedMetadata();
}
}
Sub VideoPlayer_MediaOpened()
If receiver IsNot Nothing Then
receiver.NotifyDurationChange(VideoPlayer.NaturalDuration.TimeSpan)
receiver.NotifyLoadedMetadata()
End If
End Sub