Pause() public method

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

            _mPlayer.Pause();
        }