QueryNodeVisitor<T>.Visit Method (CollectionFunctionCallNode)
Visit a CollectionFunctionCallNode
Namespace: Microsoft.Data.OData.Query.SemanticAst
Assembly: Microsoft.Data.OData (in Microsoft.Data.OData.dll)
Syntax
'Declaration
Public Overridable Function Visit ( _
nodeIn As CollectionFunctionCallNode _
) As T
'Usage
Dim instance As QueryNodeVisitor
Dim nodeIn As CollectionFunctionCallNode
Dim returnValue As T
returnValue = instance.Visit(nodeIn)
public virtual T Visit(
CollectionFunctionCallNode nodeIn
)
public:
virtual T Visit(
CollectionFunctionCallNode^ nodeIn
)
abstract Visit :
nodeIn:CollectionFunctionCallNode -> 'T
override Visit :
nodeIn:CollectionFunctionCallNode -> 'T
public function Visit(
nodeIn : CollectionFunctionCallNode
) : T
Parameters
- nodeIn
Type: Microsoft.Data.OData.Query.SemanticAst.CollectionFunctionCallNode
the node to visit
Return Value
Type: T
Defined by the implementer