EdmCoreModel.FindDeclaredBoundOperations Method

Definition

Overloads

FindDeclaredBoundOperations(IEdmType)

Searches for bound operations based on the binding type, returns an empty enumerable if no operation exists.

FindDeclaredBoundOperations(String, IEdmType)

Searches for bound operations based on the qualified name and binding type, returns an empty enumerable if no operation exists.

FindDeclaredBoundOperations(IEdmType)

Searches for bound operations based on the binding type, returns an empty enumerable if no operation exists.

C#
public System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperation> FindDeclaredBoundOperations (Microsoft.OData.Edm.IEdmType bindingType);

Parameters

bindingType
IEdmType

Type of the binding.

Returns

A set of operations that share the binding type or empty enumerable if no such operation exists.

Implements

Applies to

OData EDM 7.0
Product Versions
OData EDM 7.0

FindDeclaredBoundOperations(String, IEdmType)

Searches for bound operations based on the qualified name and binding type, returns an empty enumerable if no operation exists.

C#
public System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperation> FindDeclaredBoundOperations (string qualifiedName, Microsoft.OData.Edm.IEdmType bindingType);

Parameters

qualifiedName
String

The qualified name of the operation.

bindingType
IEdmType

Type of the binding.

Returns

A set of operations that share the qualified name and binding type or empty enumerable if no such operation exists.

Implements

Applies to

OData EDM 7.0
Product Versions
OData EDM 7.0