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