IEdmModel.FindDeclaredBoundOperations Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperation> FindDeclaredBoundOperations (Microsoft.OData.Edm.IEdmType bindingType);
abstract member FindDeclaredBoundOperations : Microsoft.OData.Edm.IEdmType -> seq<Microsoft.OData.Edm.IEdmOperation>
Public Function FindDeclaredBoundOperations (bindingType As IEdmType) As IEnumerable(Of IEdmOperation)
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.
Applies to
FindDeclaredBoundOperations(String, IEdmType)
Searches for bound operations based on the qualified name and binding type, returns an empty enumerable if no operation exists.
public System.Collections.Generic.IEnumerable<Microsoft.OData.Edm.IEdmOperation> FindDeclaredBoundOperations (string qualifiedName, Microsoft.OData.Edm.IEdmType bindingType);
abstract member FindDeclaredBoundOperations : string * Microsoft.OData.Edm.IEdmType -> seq<Microsoft.OData.Edm.IEdmOperation>
Public Function FindDeclaredBoundOperations (qualifiedName As String, bindingType As IEdmType) As IEnumerable(Of IEdmOperation)
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.