/// <summary>
 /// Closes the currently loaded media.
 /// </summary>
 public void Close()
 {
     Commands.Close().Wait();
 }
 /// <summary>
 /// Closes the currently loaded media.
 /// </summary>
 public async void Close()
 {
     await Commands.Close();
 }