SourceChangeRequestedEventArgs クラス

定義

SourceChangeRequested イベントに関する情報を提供します。

public ref class SourceChangeRequestedEventArgs sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
class SourceChangeRequestedEventArgs final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public sealed class SourceChangeRequestedEventArgs
Public NotInheritable Class SourceChangeRequestedEventArgs
継承
Object Platform::Object IInspectable SourceChangeRequestedEventArgs
属性

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (v1.0 で導入)

注釈

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

async void receiver_SourceChangeRequested(
    Windows.Media.PlayTo.PlayToReceiver sender,
    Windows.Media.PlayTo.SourceChangeRequestedEventArgs args)
{
    if (args.Stream != null)
        await dispatcher.RunAsync(
            Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
            {
                var stream = args.Stream as Windows.Storage.Streams.IRandomAccessStream;
                VideoPlayer.SetSource(stream, args.Stream.ContentType);
            });
}
Async Sub receiver_SourceChangeRequested(
    sender As Windows.Media.PlayTo.PlayToReceiver,
    args As Windows.Media.PlayTo.SourceChangeRequestedEventArgs)

    If args.Stream IsNot Nothing Then
        Await Dispatcher.RunAsync(
            Windows.UI.Core.CoreDispatcherPriority.Normal,
            Sub()
                Dim stream = TryCast(args.Stream, Windows.Storage.Streams.IRandomAccessStream)
                VideoPlayer.SetSource(stream, args.Stream.ContentType)
            End Sub)
    End If
End Sub

プロパティ

Album

オーディオ ストリーム内の曲を含むアルバムの名前を取得します。

Author

メディア ストリーム内のコンテンツの作成者を取得します。

Date

メディア ストリーム内のコンテンツが発行された日付を取得します。

Description

メディア ストリーム内のコンテンツの説明を取得します。

Genre

メディア ストリーム内のコンテンツが属するジャンルの名前を取得します。

Properties

メディア ストリーム内のコンテンツのカスタム プロパティ名と値を取得します。

Rating

メディア ストリーム内のコンテンツの評価を取得します。

Stream

Play To レシーバーのメディア ストリームを取得します。

Thumbnail

メディア ストリーム内のコンテンツのサムネイル画像を取得します。

Title

メディア ストリーム内のコンテンツのタイトルを取得します。

適用対象

こちらもご覧ください