#pragma warning restore SA1401 // Fields must be private
        #endregion

        #region Public API

        /// <summary>
        /// Begins or resumes playback of the currently loaded media.
        /// </summary>
        public void Play()
        {
            Commands.Play();
        }
 /// <summary>
 /// Begins or resumes playback of the currently loaded media.
 /// </summary>
 public async void Play()
 {
     await Commands.Play();
 }