AngleSharp by AngleSharp

<PackageReference Include="AngleSharp" Version="1.3.0-beta.470" />

.NET API 958,976 bytes

 IImplementation

public interface IImplementation
The DOMImplementation interface represent an object providing methods which are not dependent on any particular document.
using AngleSharp.Attributes; using System.Runtime.CompilerServices; namespace AngleSharp.Dom { [System.Runtime.CompilerServices.NullableContext(1)] [DomName("DOMImplementation")] public interface IImplementation { [DomName("createHTMLDocument")] IDocument CreateHtmlDocument(string title); [DomName("createDocumentType")] IDocumentType CreateDocumentType(string qualifiedName, string publicId, string systemId); [DomName("hasFeature")] bool HasFeature(string feature, [System.Runtime.CompilerServices.Nullable(2)] string version = null); } }