-
Method Summary
Gets an invoke request instance for the action import with the given name.
Gets an invoke request instance for the action import with the given name.
Gets an invoke request instance for the action bound to given URI (no parameters).
Gets an invoke request instance for the action bound to given URI (with parameters).
Gets an invoke request instance for the function bound to given URI (no parameters).
Gets an invoke request instance for the function bound to given URI (with parameters).
Gets an invoke request instance for the function import with the given name and no parameters.
Gets an invoke request instance for the function import with the given name and matching parameter names.
-
Method Details
-
getFunctionImportInvokeRequest
Gets an invoke request instance for the function import with the given name and no parameters.
- Type Parameters:
T
- OData domain object result, derived from return type defined in the function import
- Parameters:
functionImportName
- operation to be invoked
- Returns:
- new
ODataInvokeRequest
instance.
-
getFunctionImportInvokeRequest
Gets an invoke request instance for the function import with the given name and matching parameter names.
- Type Parameters:
T
- OData domain object result, derived from return type defined in the function import
- Parameters:
functionImportName
- operation to be invoked
parameters
- parameters to pass to operation import invocation
- Returns:
- new
ODataInvokeRequest
instance.
-
getActionImportInvokeRequest
Gets an invoke request instance for the action import with the given name.
- Type Parameters:
T
- OData domain object result, derived from return type defined in the action import
- Parameters:
actionImportName
- operation to be invoked
- Returns:
- new
ODataInvokeRequest
instance.
-
getActionImportInvokeRequest
Gets an invoke request instance for the action import with the given name.
- Type Parameters:
T
- OData domain object result, derived from return type defined in the action import
- Parameters:
actionImportName
- operation to be invoked
parameters
- parameters to pass to operation import invocation
- Returns:
- new
ODataInvokeRequest
instance.
-
getBoundFunctionInvokeRequest
Gets an invoke request instance for the function bound to given URI (no parameters).
- Type Parameters:
T
- OData domain object result
- Parameters:
bindingParameterURI
- binding parameter URI
functionName
- operation to be invoked
bindingParameterTypeName
- binding parameter type full qualified name
isBindingParameterCollection
- whether binding parameter is collection
- Returns:
- new
ODataInvokeRequest
instance.
-
getBoundFunctionInvokeRequest
Gets an invoke request instance for the function bound to given URI (with parameters).
- Type Parameters:
T
- OData domain object result
- Parameters:
bindingParameterURI
- binding parameter URI
functionName
- operation to be invoked
bindingParameterTypeName
- binding parameter type full qualified name
isBindingParameterCollection
- whether binding parameter is collection
parameters
- parameters to pass to function invocation
- Returns:
- new
ODataInvokeRequest
instance.
-
getBoundActionInvokeRequest
Gets an invoke request instance for the action bound to given URI (no parameters).
- Type Parameters:
T
- OData domain object result
- Parameters:
bindingParameterURI
- binding parameter URI
actionName
- operation to be invoked
bindingParameterTypeName
- binding parameter type full qualified name
isBindingParameterCollection
- whether binding parameter is collection
- Returns:
- new
ODataInvokeRequest
instance.
-
getBoundActionInvokeRequest
Gets an invoke request instance for the action bound to given URI (with parameters).
- Type Parameters:
T
- OData domain object result
- Parameters:
bindingParameterURI
- binding parameter URI
actionName
- operation to be invoked
bindingParameterTypeName
- binding parameter type full qualified name
isBindingParameterCollection
- whether binding parameter is collection
parameters
- parameters to pass to function invocation
- Returns:
- new
ODataInvokeRequest
instance.