Rosetta.AST.Utilities.MultiPurposeASTWalker.VisitXmlComment C# (CSharp) Method

VisitXmlComment() public final method

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