SourceChangeRequestedEventArgs 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供有关 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
- 继承
- 属性
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 |
获取媒体流中内容的标题。 |