次の方法で共有


PlayToReceiver.NotifyTimeUpdate(TimeSpan) メソッド

定義

オーディオまたはビデオの再生の時刻の場所が変更されたことを再生先レシーバーに通知します。

public:
 virtual void NotifyTimeUpdate(TimeSpan currentTime) = NotifyTimeUpdate;
void NotifyTimeUpdate(TimeSpan const& currentTime);
public void NotifyTimeUpdate(System.TimeSpan currentTime);
function notifyTimeUpdate(currentTime)
Public Sub NotifyTimeUpdate (currentTime As TimeSpan)

パラメーター

currentTime
TimeSpan TimeSpan

再生の新しい時刻の場所。

Windows の要件

アプリの機能
privateNetworkClientServer

注釈

ソフトウェアの Play To レシーバーを作成する例については、「 メディア キャスト」を参照してください。

async void receiver_TimeUpdateRequested(
    Windows.Media.PlayTo.PlayToReceiver sender,
    object args)
{
    await dispatcher.RunAsync(
        Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
        {
            if (VideoPlayer.Position != null)
                receiver.NotifyTimeUpdate(VideoPlayer.Position);
        });
}
Async Sub receiver_TimeUpdateRequested(
    sender As Windows.Media.PlayTo.PlayToReceiver,
    args As Object)

    Await Dispatcher.RunAsync(
        Windows.UI.Core.CoreDispatcherPriority.Normal,
        Sub()
            receiver.NotifyTimeUpdate(VideoPlayer.Position)
        End Sub)
End Sub

適用対象

こちらもご覧ください