We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d6105 commit 8c34848Copy full SHA for 8c34848
src/HtmlAgilityPack.Shared/HtmlNode.cs
@@ -233,10 +233,12 @@ public HtmlAttributeCollection ClosingAttributes
233
get { return !HasClosingAttributes ? new HtmlAttributeCollection(this) : _endnode.Attributes; }
234
}
235
236
- /// <summary>
237
- /// Gets the closing tag of the node, null if the node is self-closing.
238
- /// </summary>
239
- public HtmlNode EndNode
+ /// <summary>
+ /// Gets the closing tag of the node.
+ /// For self-closing nodes, this will reference an internal placeholder
+ /// that behaves like a null closing tag or might be null.
240
+ /// </summary>
241
+ public HtmlNode EndNode
242
{
243
get { return _endnode; }
244
0 commit comments