#pragma warning disable CS1591 using System.Net.Http; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Controller.Providers { public interface IRemoteSearchProvider : IMetadataProvider { /// /// Gets the image response. /// /// The URL. /// The cancellation token. /// Task{HttpResponseInfo}. Task GetImageResponse(string url, CancellationToken cancellationToken); } }