共用方式為


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 引進)

備註

如需建立軟體播放收件者的範例,請參閱 媒體傳播

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

取得播放至接收者的媒體數據流。

Thumbnail

取得媒體數據流中內容的縮圖影像。

Title

取得媒體數據流中內容的標題。

適用於

另請參閱