/// <summary> /// Uri to the backdrop image. /// </summary> /// <param name="size">The size for the image as required</param> /// <returns>The uri to the sized image</returns> public Uri Uri(BackdropSize size = BackdropSize.w300) { return(Extensions.MakeImageUri(size.ToString(), BackdropPath)); }
/// <summary> /// Uri to the backdrop image. /// </summary> /// <param name="size">The size for the image as required</param> /// <returns>The uri to the sized image</returns> public Uri Uri(BackdropSize size) { return Extensions.MakeImageUri(size.ToString(), BackdropPath); }
/// <summary> /// Uri to the backdrop image. /// </summary> /// <param name="size">The size for the image as required</param> /// <returns>The uri to the sized image</returns> public Uri Uri(BackdropSize size) { return(Utilities.Extensions.MakeImageUri(size.ToString(), BackdropPath)); }
/// <summary> /// Gives the Uri for the backdrop image /// </summary> /// <param name="size">The requested size of the image</param> /// <returns>Uri to the sized image</returns> public Uri Uri(BackdropSize size) { return(Extensions.MakeImageUri(size.ToString(), FilePath)); }
private Uri Uri(BackdropSize size) { return(MakeImageUri(size.ToString(), BackdropPath)); }
/// <summary> /// Gives the Uri for the backdrop image /// </summary> /// <param name="size">The requested size of the image</param> /// <returns>Uri to the sized image</returns> public Uri Uri(BackdropSize size) { return Utilities.Extensions.MakeImageUri(size.ToString(), FilePath); }
public Uri CreateBackdropLink(IPoster poster, BackdropSize backdropSize = BackdropSize.w720) => CreateBackdropLink(poster.PosterPath, backdropSize);
public Uri CreateBackdropLink(string partPath, BackdropSize backdropSize = BackdropSize.w1280) => CreateImageLink(partPath, backdropSize.ToString());
/// <summary> /// Uri to the backdrop image. /// </summary> /// <param name="size">The size for the image as required</param> /// <returns>The uri to the sized image</returns> public Uri Uri(BackdropSize size = BackdropSize.w300) { return Utilities.Extensions.MakeImageUri(size.ToString(), BackdropPath); }