PlayToReceiver.NotifyLoadedMetadata 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Play To 수신기에 미디어의 메타데이터 로드가 완료되었음을 알 수 있습니다.
public:
virtual void NotifyLoadedMetadata() = NotifyLoadedMetadata;
void NotifyLoadedMetadata();
public void NotifyLoadedMetadata();
function notifyLoadedMetadata()
Public Sub NotifyLoadedMetadata ()
Windows 요구 사항
앱 기능 |
privateNetworkClientServer
|
설명
소프트웨어 Play To 수신기를 만드는 예제는 미디어 캐스팅을 참조하세요.
void VideoPlayer_MediaOpened(object sender, RoutedEventArgs e)
{
if (receiver != null)
{
receiver.NotifyDurationChange(VideoPlayer.NaturalDuration.TimeSpan);
receiver.NotifyLoadedMetadata();
}
}
Sub VideoPlayer_MediaOpened()
If receiver IsNot Nothing Then
receiver.NotifyDurationChange(VideoPlayer.NaturalDuration.TimeSpan)
receiver.NotifyLoadedMetadata()
End If
End Sub