CastingSource.PreferredSourceUri プロパティ

定義

DLNA ByRef で使用するコンテンツの代替 URI を取得または設定します。

public:
 property Uri ^ PreferredSourceUri { Uri ^ get(); void set(Uri ^ value); };
Uri PreferredSourceUri();

void PreferredSourceUri(Uri value);
public System.Uri PreferredSourceUri { get; set; }
var uri = castingSource.preferredSourceUri;
castingSource.preferredSourceUri = uri;
Public Property PreferredSourceUri As Uri

プロパティ値

コンテンツの代替 URI。

#include <winrt/Windows.Media.Casting.h>
...
Windows::UI::Xaml::Controls::MediaElement video;
video.Source(Windows::Foundation::Uri{ L"http://www.contoso.com/videos/video.mp4" });
video.GetAsCastingSource().PreferredSourceUri(Windows::Foundation::Uri{ L"http://www.contoso.com/catalogid=1234" });

適用対象