Rosetta.AST.Utilities.MultiPurposeASTWalker.VisitXmlComment C# (CSharp) 메소드

VisitXmlComment() 공개 최종 메소드

public final VisitXmlComment ( XmlCommentSyntax node ) : void
node XmlCommentSyntax
리턴 void
        public override sealed void VisitXmlComment(XmlCommentSyntax node)
        {
            this.OnNodeVisited(node);
            if (!this.traverseRootOnly) base.VisitXmlComment(node);
        }
MultiPurposeASTWalker