다음을 통해 공유


PlayToReceiver.NotifyVolumeChange(Double, Boolean) 메서드

정의

재생 받는 사람 수신기에 오디오 또는 비디오 재생 볼륨이 변경되었음을 알 수 있습니다.

public:
 virtual void NotifyVolumeChange(double volume, bool mute) = NotifyVolumeChange;
void NotifyVolumeChange(double const& volume, bool const& mute);
public void NotifyVolumeChange(double volume, bool mute);
function notifyVolumeChange(volume, mute)
Public Sub NotifyVolumeChange (volume As Double, mute As Boolean)

매개 변수

volume
Double

double

볼륨의 새 값입니다.

mute
Boolean

bool

볼륨이 음소거된 경우 True입니다. 그렇지 않으면 false입니다.

Windows 요구 사항

앱 기능
privateNetworkClientServer

설명

소프트웨어 Play To 수신기를 만드는 예제는 미디어 캐스팅을 참조하세요.

void VideoPlayer_VolumeChanged(object sender, RoutedEventArgs e)
{
    if (receiver != null)
        receiver.NotifyVolumeChange(VideoPlayer.Volume, VideoPlayer.IsMuted);
}
Sub VideoPlayer_VolumeChanged()
    If receiver IsNot Nothing Then
        receiver.NotifyVolumeChange(VideoPlayer.Volume, VideoPlayer.IsMuted)
    End If
End Sub

적용 대상

추가 정보