AngleSharp by AngleSharp

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

 IRenderingContext

public interface IRenderingContext
Represents the typedef for any rendering context. This is shown is the base interface for all rendering contexts.
using AngleSharp.Attributes; using AngleSharp.Dom.Html; namespace AngleSharp.Dom.Media { [DomName("RenderingContext")] public interface IRenderingContext { string ContextId { get; } bool IsFixed { get; } IHtmlCanvasElement Host { get; } byte[] ToImage(string type); } }