/// <summary> /// Determines whether the given file type is supported by the current <see cref="Windows.UI.Xaml.Controls.MediaElement" />. /// </summary> /// <param name="fileType">Type of the file.</param> /// <returns></returns> public Boolean IsFileTypeSupported(String fileType) { return(_mediaElement.CanPlayType(fileType) != MediaCanPlayResponse.NotSupported); }