SelectTermToken.Accept<T>(ISyntacticTreeVisitor<T>) 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.
Implement the visitor for this Token
public override T Accept<T> (Microsoft.OData.UriParser.ISyntacticTreeVisitor<T> visitor);
override this.Accept : Microsoft.OData.UriParser.ISyntacticTreeVisitor<'T> -> 'T
Public Overrides Function Accept(Of T) (visitor As ISyntacticTreeVisitor(Of T)) As T
Type Parameters
- T
The type to return
Parameters
- visitor
- ISyntacticTreeVisitor<T>
A tree visitor that will visit this node.
Returns
T
Determined by the return type of the visitor.