Base class used to define a TOML Syntax tree.
public abstract class SyntaxNode : SyntaxNodeBase
kind:method, kind:property, kind:ctor. Press Esc to clear.SyntaxNode(SyntaxKind)Initializes a new instance of the SyntaxNode class.ChildrenCountGets the number of children.KindGets the type of node.LeadingTriviaGets the leading trivia attached to this node. Might be null if no leading trivias.TrailingTriviaGets the trailing trivia attached to this node. Might be null if no trailing trivias.GetChild(Int32)Gets a child at the specified index.GetChildImpl(Int32)Gets a child at the specified index.ParentToThis<TSyntaxNode>(ref TSyntaxNode?, TSyntaxNode?, TokenKind, TokenKind)Helper method to deparent/parent a SyntaxToken to this instance with an expected kind of token.ParentToThis<TSyntaxNode>(ref TSyntaxNode?, TSyntaxNode?, TokenKind)Helper method to deparent/parent a SyntaxToken to this instance with an expected kind of token.ParentToThis<TSyntaxNode>(ref TSyntaxNode?, TSyntaxNode?)Helper method to deparent/parent a node to this instance.ParentToThis<TSyntaxNode, TExpected>(ref TSyntaxNode?, TSyntaxNode?, Boolean, TExpected)Helper method to deparent/parent a SyntaxToken to this instance with an expected kind of token condition.WriteTo(TextWriter)Writes this node to a textual TOML representationDescendants(SyntaxNode, Boolean)Get all descendants in Depth-First-Search order of the node. Note that this method returns the node itself (last).Tokens(SyntaxNode, Boolean)Get all SyntaxToken and SyntaxTrivia in Depth-First-Search order of the node.