SingleValueFunctionCallNode Class

Describes a node representing a function call which returns a single value.

Inheritance Hierarchy

System.Object
  Microsoft.Data.OData.ODataAnnotatable
    Microsoft.Data.OData.Query.SemanticAst.QueryNode
      Microsoft.Data.OData.Query.SemanticAst.SingleValueNode
        Microsoft.Data.OData.Query.SingleValueFunctionCallNode

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

Syntax

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

The SingleValueFunctionCallNode type exposes the following members.

Constructors

  Name Description
Public method SingleValueFunctionCallNode(String, IEnumerable<QueryNode>, IEdmTypeReference) Initializes a new instance of the SingleValueFunctionCallNode class.
Public method SingleValueFunctionCallNode(String, IEnumerable<IEdmFunctionImport>, IEnumerable<QueryNode>, IEdmTypeReference, QueryNode) Create a SingleValueFunctionCallNode

Top

Properties

  Name Description
Public property Arguments Gets the list of arguments to this function call.
Public property FunctionImports Gets the list of function imports.
Public property Kind Gets the kind of this node. (Inherited from SingleValueNode.)
Public property Name Gets the name of the function to call.
Public property Source Gets the semantically bound parent of this function.
Public property TypeReference Gets the type of value returned by this function. (Overrides SingleValueNode.TypeReference.)

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 Namespace