Jaa


EdmFunction Constructors

Definition

Overloads

EdmFunction(String, String, IEdmTypeReference)

Initializes a new instance of the EdmFunction class.

EdmFunction(String, String, IEdmTypeReference, Boolean, IEdmPathExpression, Boolean)

Initializes a new instance of the EdmFunction class.

EdmFunction(String, String, IEdmTypeReference)

Initializes a new instance of the EdmFunction class.

public EdmFunction (string namespaceName, string name, Microsoft.OData.Edm.IEdmTypeReference returnType);
new Microsoft.OData.Edm.EdmFunction : string * string * Microsoft.OData.Edm.IEdmTypeReference -> Microsoft.OData.Edm.EdmFunction
Public Sub New (namespaceName As String, name As String, returnType As IEdmTypeReference)

Parameters

namespaceName
String

Namespace of the function.

name
String

Name of the function.

returnType
IEdmTypeReference

Return type of the function.

Applies to

EdmFunction(String, String, IEdmTypeReference, Boolean, IEdmPathExpression, Boolean)

Initializes a new instance of the EdmFunction class.

public EdmFunction (string namespaceName, string name, Microsoft.OData.Edm.IEdmTypeReference returnType, bool isBound, Microsoft.OData.Edm.IEdmPathExpression entitySetPathExpression, bool isComposable);
new Microsoft.OData.Edm.EdmFunction : string * string * Microsoft.OData.Edm.IEdmTypeReference * bool * Microsoft.OData.Edm.IEdmPathExpression * bool -> Microsoft.OData.Edm.EdmFunction
Public Sub New (namespaceName As String, name As String, returnType As IEdmTypeReference, isBound As Boolean, entitySetPathExpression As IEdmPathExpression, isComposable As Boolean)

Parameters

namespaceName
String

Name of the namespace.

name
String

The name.

returnType
IEdmTypeReference

Type of the return.

isBound
Boolean

if set to true [is bound].

entitySetPathExpression
IEdmPathExpression

The entity set path expression.

isComposable
Boolean

A value indicating if the function is composable or not.

Applies to