IStyleEngine
Defines the API of an available engine for computing the stylesheet.
using AngleSharp.Dom;
using AngleSharp.Network;
namespace AngleSharp.Services.Styling
{
public interface IStyleEngine
{
string Type { get; }
IStyleSheet ParseStylesheet(string source, StyleOptions options);
IStyleSheet ParseStylesheet(IResponse response, StyleOptions options);
}
}