AmazonScrape.ResourceLoader.GetPrimeLogoBitmap C# (CSharp) Method

GetPrimeLogoBitmap() public static method

Load the Amazon Prime logo
public static GetPrimeLogoBitmap ( ) : BitmapImage
return System.Windows.Media.Imaging.BitmapImage
        public static BitmapImage GetPrimeLogoBitmap()
        {
            BitmapImage primeLogoBitmap = new BitmapImage();
            try
            {
                primeLogoBitmap = new BitmapImage(new Uri("pack://application:,,,/UI/Resources/Images/prime_logo.png", UriKind.RelativeOrAbsolute));
            }
            catch (Exception)
            { Debug.WriteLine("Can't load prime logo resource."); }

            return primeLogoBitmap;
        }