SurfaceBluetooth.ObexAudio.Pause C# (CSharp) Method

Pause() public method

Pause the ringtone
public Pause ( ) : void
return void
        public void Pause()
        {
            if (Player != null)
            {
                Player.Pause();
                IsPlaying = false;
            }
        }