IRequestProcessor
interface IRequestProcessor
using System.Threading.Tasks;
namespace AngleSharp.Network.RequestProcessors
{
internal interface IRequestProcessor
{
IDownload Download { get; }
Task ProcessAsync(ResourceRequest request);
}
}