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);
}
}