IDocumentLoader
Interface used to handle top-level document requests. These requests
include navigation tasks.
using System.Threading;
using System.Threading.Tasks;
namespace AngleSharp.Network
{
public interface IDocumentLoader
{
Task<IResponse> LoadAsync(DocumentRequest request, CancellationToken cancel);
}
}