PlayToReceiver.NotifyDurationChange(TimeSpan) Method

Definition

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

duration
TimeSpan TimeSpan

The new duration of the audio or video media.

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

Applies to

See also