IConfiguration
Represents the interface for a general setup of AngleSharp
or a particular AngleSharp request.
using System.Collections.Generic;
namespace AngleSharp
{
public interface IConfiguration
{
IEnumerable<object> Services { get; }
}
}