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 84cea56 commit 11d6105Copy full SHA for 11d6105
src/HtmlAgilityPack.Shared/HtmlNode.cs
@@ -589,6 +589,14 @@ public int OuterLength
589
get { return OuterHtml.Length; }
590
}
591
592
+ /// <summary>
593
+ /// Gets the original outer length. The Current "OuterLength" property return the "OuterHtml.Length" which might contains a different value.
594
+ /// </summary>
595
+ public int OriginalOuterLength
596
+ {
597
+ get { return _outerlength; }
598
+ }
599
+
600
/// <summary>
601
/// Gets or sets this node's name.
602
/// </summary>
0 commit comments