コード例 #1
0
 /// <summary>Visits the provided <paramref name="horizontalRule"/> element.</summary>
 /// <param name="horizontalRule">The <see cref="HorizontalRuleElement"/> to visit.</param>
 protected internal abstract void Visit(HorizontalRuleElement horizontalRule);
コード例 #2
0
ファイル: HtmlWriterVisitor.cs プロジェクト: Andrei15193/Mup
 /// <summary>Visits the provided <paramref name="horizontalRule"/> element.</summary>
 /// <param name="horizontalRule">The <see cref="HorizontalRuleElement"/> to visit.</param>
 protected internal override void Visit(HorizontalRuleElement horizontalRule)
 {
     BeginElement("hr");
     EndElement();
 }