SyntaxWalker.Visit(SyntaxNode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called when the walker visits a node. This method may be overridden if subclasses want to handle the node. Overrides should call back into this base method if they want the children of this node to be visited.
public:
virtual void Visit(Microsoft::CodeAnalysis::SyntaxNode ^ node);
public virtual void Visit (Microsoft.CodeAnalysis.SyntaxNode node);
abstract member Visit : Microsoft.CodeAnalysis.SyntaxNode -> unit
override this.Visit : Microsoft.CodeAnalysis.SyntaxNode -> unit
Public Overridable Sub Visit (node As SyntaxNode)
Parameters
- node
- SyntaxNode
The current node that the walker is visiting.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.