Channel9Downloader.Entities.DownloadItem.OnPlayMovie C# (CSharp) Method

OnPlayMovie() private method

Plays the movie in the default player.
private OnPlayMovie ( ) : void
return void
        private void OnPlayMovie()
        {
            if (!File.Exists(LocalFilename))
            {
                return;
            }

            Process.Start(LocalFilename);
        }