HTMLModElement
Represents the HTML modifier (ins / del) element.
namespace AngleSharp.DOM.Html
{
[DOM("HTMLModElement")]
public sealed class HTMLModElement : HTMLElement
{
[DOM("cite")]
public string Cite {
get {
return GetAttribute("cite");
}
set {
SetAttribute("cite", value);
}
}
[DOM("datetime")]
public string Datetime {
get {
return GetAttribute("datetime");
}
set {
SetAttribute("datetime", value);
}
}
protected internal override bool IsSpecial => false;
internal HTMLModElement()
{
_name = "ins";
}
}
}