mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 10:37:22 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System.Collections.Generic;
 | |
| using System.Net.Http;
 | |
| using System.Threading;
 | |
| using System.Threading.Tasks;
 | |
| using MediaBrowser.Controller.Entities;
 | |
| using MediaBrowser.Model.Entities;
 | |
| using MediaBrowser.Model.Providers;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Providers
 | |
| {
 | |
|     /// <summary>
 | |
|     /// Interface IImageProvider.
 | |
|     /// </summary>
 | |
|     public interface IRemoteImageProvider : IImageProvider
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets the supported images.
 | |
|         /// </summary>
 | |
|         /// <param name="item">The item.</param>
 | |
|         /// <returns>IEnumerable{ImageType}.</returns>
 | |
|         IEnumerable<ImageType> GetSupportedImages(BaseItem item);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the images.
 | |
|         /// </summary>
 | |
|         /// <param name="item">The item.</param>
 | |
|         /// <param name="cancellationToken">The cancellation token.</param>
 | |
|         /// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns>
 | |
|         Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken);
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the image response.
 | |
|         /// </summary>
 | |
|         /// <param name="url">The URL.</param>
 | |
|         /// <param name="cancellationToken">The cancellation token.</param>
 | |
|         /// <returns>Task{HttpResponseInfo}.</returns>
 | |
|         Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken);
 | |
|     }
 | |
| }
 |