示例#1
0
 /// <summary>
 /// Stop playing the <see cref="SoundChannel"/>.
 /// </summary>
 /// <param name="channel"><see cref="SoundChannel"/> to stop.</param>
 public void Stop(SoundChannel channel)
 {
     channel.Stop();
 }
示例#2
0
 /// <summary>
 /// Pause playing the <see cref="SoundChannel"/>.
 /// </summary>
 /// <param name="channel"><see cref="SoundChannel"/> to pause.</param>
 public void Pause(SoundChannel channel)
 {
     channel.Pause();
 }