Pause() public method

Pause the audio
public Pause ( ) : void
return void
Example #1
0
 /// <summary>
 /// Pauses this song.
 /// </summary>
 public void Pause()
 {
     if (output.PlaybackState != PlaybackState.Paused)
     {
         output.Pause();
     }
 }