IRenderingService
Represents a service for creating rendering contexts.
using AngleSharp.Dom.Html;
using AngleSharp.Dom.Media;
namespace AngleSharp.Services
{
public interface IRenderingService
{
bool IsSupportingContext(string contextId);
IRenderingContext CreateContext(IHtmlCanvasElement host, string contextId);
}
}