CollectionFunctionCallNode Class

Node to represent a function call that returns a Collection

Inheritance Hierarchy

System.Object
  Microsoft.Data.OData.ODataAnnotatable
    Microsoft.Data.OData.Query.SemanticAst.QueryNode
      Microsoft.Data.OData.Query.SemanticAst.CollectionNode
        Microsoft.Data.OData.Query.SemanticAst.CollectionFunctionCallNode

Namespace:  Microsoft.Data.OData.Query.SemanticAst
Assembly:  Microsoft.Data.OData (in Microsoft.Data.OData.dll)

Syntax

'Declaration
Public NotInheritable Class CollectionFunctionCallNode _
    Inherits CollectionNode
'Usage
Dim instance As CollectionFunctionCallNode
public sealed class CollectionFunctionCallNode : CollectionNode
public ref class CollectionFunctionCallNode sealed : public CollectionNode
[<SealedAttribute>]
type CollectionFunctionCallNode =  
    class 
        inherit CollectionNode 
    end
public final class CollectionFunctionCallNode extends CollectionNode

The CollectionFunctionCallNode type exposes the following members.

Constructors

  Name Description
Public method CollectionFunctionCallNode Creates a CollectionFunctionCallNode to represent a function call that returns a collection

Top

Properties

  Name Description
Public property CollectionType The type of the collection represented by this node. (Overrides CollectionNode.CollectionType.)
Public property FunctionImports Gets the list of function imports represeted by this node
Public property ItemType Gets the individual item type returned by this function (Overrides CollectionNode.ItemType.)
Public property Kind Gets the kind of this node. (Inherited from CollectionNode.)
Public property Name Gets the name of this function.
Public property Parameters Gets the list of parameters to this function
Public property Source Gets the semantically bound parent node of this CollectionFunctionCallNode.

Top

Methods

  Name Description
Public method Accept<T>(QueryNodeVisitor<T>) Accept a QueryNodeVisitor<T> that walks a tree of QueryNodes. (Overrides QueryNode.Accept<T>(QueryNodeVisitor<T>).)
Public method Accept<T>(QueryNodeVisitor<T>) Accept a QueryNodeVisitor<T> that walks a tree of QueryNodes. (Inherited from QueryNode.)
Public method Equals (Inherited from Object.)
Public method GetAnnotation<T> Gets or sets the annotation by type. (Inherited from ODataAnnotatable.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Public method SetAnnotation<T> Sets an annotation of type T. (Inherited from ODataAnnotatable.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.Data.OData.Query.SemanticAst Namespace