PlayToReceiver.NotifyError 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
재생 받는 사람 수신자가 미디어를 표시하거나 재생할 때 오류가 발생했음을 알 수 있습니다.
public:
virtual void NotifyError() = NotifyError;
void NotifyError();
public void NotifyError();
function notifyError()
Public Sub NotifyError ()
설명
소프트웨어 Play To 수신기를 만드는 예제는 미디어 캐스팅을 참조하세요.
void VideoPlayer_CurrentStateChanged(object sender, RoutedEventArgs e)
{
if (receiver != null)
{
switch (VideoPlayer.CurrentState)
{
case MediaElementState.Playing:
receiver.NotifyPlaying();
break;
case MediaElementState.Paused:
receiver.NotifyPaused();
break;
case MediaElementState.Stopped:
receiver.NotifyStopped();
break;
}
}
}
void VideoPlayer_MediaFailed(object sender, ExceptionRoutedEventArgs e)
{
if (receiver != null) { receiver.NotifyError(); }
}
Sub VideoPlayer_CurrentStateChanged()
If receiver IsNot Nothing Then
Select Case VideoPlayer.CurrentState
Case MediaElementState.Playing
receiver.NotifyPlaying()
Case MediaElementState.Paused
receiver.NotifyPaused()
Case MediaElementState.Stopped
receiver.NotifyStopped()
End Select
End If
End Sub
Sub VideoPlayer_MediaFailed()
If receiver IsNot Nothing Then receiver.NotifyError()
End Sub