mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			567 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			567 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
using MediaBrowser.Common.Net;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Providers
 | 
						|
{
 | 
						|
    public interface IRemoteSearchProvider : IMetadataProvider
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the image response.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="url">The URL.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        /// <returns>Task{HttpResponseInfo}.</returns>
 | 
						|
        Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken);
 | 
						|
    }
 | 
						|
}
 |