Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
HtmlEmptyElement.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace Waher.Content.Html
6{
11 {
21 {
22 }
23
27 public override bool IsEmptyElement => true;
28 }
29}
Base class for all HTML elements.
Definition: HtmlElement.cs:12
Base class for all empty HTML elements.
HtmlEmptyElement(HtmlDocument Document, HtmlElement Parent, int StartPosition, string Name)
Base class for all empty HTML elements.
override bool IsEmptyElement
If the element is an empty element.
int StartPosition
Start position of element.
Definition: HtmlNode.cs:60
HtmlDocument Document
HTML Document
Definition: HtmlNode.cs:49
HtmlNode Parent
Parent node, if available.
Definition: HtmlNode.cs:54