Table of Contents

Interface IDocumentType

Namespace
AngleSharp.Dom
Assembly
AngleSharp.dll

The DocumentType interface represents a Node containing a doctype.

[DomName("DocumentType")]
public interface IDocumentType : INode, IEventTarget, IMarkupFormattable, IChildNode
Inherited Members
Extension Methods

Properties

Name

Gets or sets the name of the document type.

[DomName("name")]
string Name { get; }

Property Value

string

PublicIdentifier

Gets or sets the public ID of the document type.

[DomName("publicId")]
string PublicIdentifier { get; }

Property Value

string

SystemIdentifier

Gets or sets the system ID of the document type.

[DomName("systemId")]
string SystemIdentifier { get; }

Property Value

string