Skip to content

Commit

Permalink
zzzprojects#139 Make HtmlNode.WriteTo virtual
Browse files Browse the repository at this point in the history
One more HtmlNode file
  • Loading branch information
Đonny committed Feb 2, 2018
1 parent 111a75b commit cc3f48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HtmlAgilityPack/HtmlNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,7 @@ public string WriteContentTo()
/// </summary>
/// <param name="outText">The TextWriter to which you want to save.</param>
/// <param name="level">identifies the level we are in starting at root with 0</param>
public void WriteTo(TextWriter outText, int level=0)
public virtual void WriteTo(TextWriter outText, int level=0)
{
string html;
switch (_nodetype)
Expand Down

0 comments on commit cc3f48f

Please sign in to comment.