ExtensionMethods.FindBoundOperations Method

Definition

Overloads

FindBoundOperations(IEdmModel, IEdmType)

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

FindBoundOperations(IEdmModel, String, IEdmType)

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

FindBoundOperations(IEdmModel, IEdmType)

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

public static System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperation> FindBoundOperations (this Microsoft.OData.Edm.IEdmModel model, Microsoft.OData.Edm.IEdmType bindingType);
static member FindBoundOperations : Microsoft.OData.Edm.IEdmModel * Microsoft.OData.Edm.IEdmType -> seq<Microsoft.OData.Edm.IEdmOperation>
<Extension()>
Public Function FindBoundOperations (model As IEdmModel, bindingType As IEdmType) As IEnumerable(Of IEdmOperation)

Parameters

model
IEdmModel

The model to search.

bindingType
IEdmType

Type of the binding.

Returns

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

Applies to

FindBoundOperations(IEdmModel, String, IEdmType)

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

public static System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperation> FindBoundOperations (this Microsoft.OData.Edm.IEdmModel model, string qualifiedName, Microsoft.OData.Edm.IEdmType bindingType);
static member FindBoundOperations : Microsoft.OData.Edm.IEdmModel * string * Microsoft.OData.Edm.IEdmType -> seq<Microsoft.OData.Edm.IEdmOperation>
<Extension()>
Public Function FindBoundOperations (model As IEdmModel, qualifiedName As String, bindingType As IEdmType) As IEnumerable(Of IEdmOperation)

Parameters

model
IEdmModel

The model to search.

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.

Applies to