Pause() public méthode

Pause the current video. If paused it will unpause.
public Pause ( ) : void
Résultat void
Exemple #1
0
        public void Pause()
        {
            if (!_canPlay || _mPlayer.CurrentStatus == MediaStatus.Stopped)
            {
                return;
            }

            _mPlayer.Pause();
        }