Share via


VisualBasicSyntaxNode.GetTrailingTrivia Method

Definition

Get the following trivia nodes of this node. If this node is a token, returns the following trivia associated with this node. If this is a non-terminal, returns the following trivia of the last token of this node.

public:
 Microsoft::CodeAnalysis::SyntaxTriviaList GetTrailingTrivia();
public Microsoft.CodeAnalysis.SyntaxTriviaList GetTrailingTrivia ();
override this.GetTrailingTrivia : unit -> Microsoft.CodeAnalysis.SyntaxTriviaList
Public Function GetTrailingTrivia () As SyntaxTriviaList

Returns

A list of the following trivia.

Remarks

If this node is a non-terminal, the parents of the trivia will be the first token of this non-terminal; NOT this node.

Applies to