Pause() 공개 메소드

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