You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
961 B
27 lines
961 B
10 years ago
|
using System.Collections.Generic;
|
||
|
using System.Threading;
|
||
|
using System.Threading.Tasks;
|
||
|
using MediaBrowser.Controller.Entities;
|
||
|
using MediaBrowser.Model.Entities;
|
||
|
|
||
|
namespace MediaBrowser.Controller.Providers
|
||
|
{
|
||
|
public interface IDynamicImageProvider : IImageProvider
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Gets the supported images.
|
||
|
/// </summary>
|
||
|
/// <param name="item">The item.</param>
|
||
|
/// <returns>IEnumerable{ImageType}.</returns>
|
||
|
IEnumerable<ImageType> GetSupportedImages(IHasImages item);
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets the image.
|
||
|
/// </summary>
|
||
|
/// <param name="item">The item.</param>
|
||
|
/// <param name="type">The type.</param>
|
||
|
/// <param name="cancellationToken">The cancellation token.</param>
|
||
|
/// <returns>Task{DynamicImageResponse}.</returns>
|
||
|
Task<DynamicImageResponse> GetImage(IHasImages item, ImageType type, CancellationToken cancellationToken);
|
||
|
}
|
||
|
}
|