24 lines
745 B
C#
24 lines
745 B
C#
// <copyright file="IRemoteSearchProvider.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.Net.Http;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
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<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken);
|
|
}
|
|
}
|