AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.8.5" />

 IRenderingService

public interface IRenderingService : IService
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); } }