Ejemplo n.º 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();
 }
Ejemplo n.º 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();
 }