다음을 통해 공유


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

재생 대상 수신기의 미디어 스트림을 가져옵니다.

Thumbnail

미디어 스트림의 콘텐츠에 대한 썸네일 이미지를 가져옵니다.

Title

미디어 스트림의 콘텐츠 제목을 가져옵니다.

적용 대상

추가 정보