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