/// <summary>
 /// Pauses and rewinds the currently loaded media.
 /// </summary>
 public void Stop()
 {
     Commands.Stop();
 }
 /// <summary>
 /// Pauses and rewinds the currently loaded media.
 /// </summary>
 public async void Stop()
 {
     await Commands.Stop();
 }