Esempio n. 1
0
        protected virtual void VisitComment(DomComment comment)
        {
            if (comment == null)
            {
                throw new ArgumentNullException(nameof(comment));
            }

            DefaultVisit(comment);
        }
Esempio n. 2
0
        protected virtual void WriteComment(DomComment comment)
        {
            if (comment == null)
            {
                throw new ArgumentNullException(nameof(comment));
            }

            WriteComment(comment.Data);
        }
Esempio n. 3
0
 void IDomNodeVisitor.Visit(DomComment comment)
 {
     VisitComment(comment);
 }
Esempio n. 4
0
 void IDomNodeVisitor.Visit(DomComment comment)
 {
     WriteComment(comment);
 }