SurfaceBluetooth.ObexAudio.Play C# (CSharp) Method

Play() public method

Start playing the ringtone.
public Play ( ) : void
return void
        public void Play()
        {
            if (Player != null)
            {
                if (Player.Position >= Player.NaturalDuration)
                {
                    Player.Position = TimeSpan.Zero;
                }
                Player.Play();
                IsPlaying = true;
            }
        }