PlayToReceiver.NotifyVolumeChange(Double, Boolean) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーディオまたはビデオの再生の音量が変更されたことを再生受信者に通知します。
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