CollectionNode Class

Represents a base class for all semantic metadata bound nodes which represent a composable collection of values.

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
        Microsoft.Data.OData.Query.SemanticAst.CollectionPropertyAccessNode
        Microsoft.Data.OData.Query.SemanticAst.EntityCollectionNode

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

Syntax

'Declaration
Public MustInherit Class CollectionNode _
    Inherits QueryNode
'Usage
Dim instance As CollectionNode
public abstract class CollectionNode : QueryNode
public ref class CollectionNode abstract : public QueryNode
[<AbstractClassAttribute>]
type CollectionNode =  
    class 
        inherit QueryNode 
    end
public abstract class CollectionNode extends QueryNode

The CollectionNode type exposes the following members.

Constructors

  Name Description
Protected method CollectionNode Initializes a new instance of the CollectionNode class.

Top

Properties

  Name Description
Public property CollectionType The type of the collection represented by this node.
Public property ItemType Gets the resource type of a single item from the collection represented by this node.
Public property Kind Gets the kind of this node. (Overrides QueryNode.Kind.)

Top

Methods

  Name Description
Public method Accept<T> Accept a QueryNodeVisitor<T> that walks a tree of QueryNodes. (Inherited from QueryNode.)
Public method Equals (Inherited from Object.)
Protected method Finalize (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.)
Protected method MemberwiseClone (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