DataMethodCall
open class DataMethodCall : ObjectBase
Encapsulates the application of an OData method (function or action) to a list of parameters.
This is used to represent calls to actions and functions defined within an entity model, as opposed to QueryFunction which is used to represent calls to builtin functions.
-
Default initializer.
Declaration
Swift
override public init() -
Declaration
Swift
open class func apply(method: DataMethod, parameters: ParameterList) -> DataMethodCallParameters
methodValue for
method.parametersValue for
parameters.Return Value
A new function application.
-
Metadata for the function or action.
Declaration
Swift
public final var method: DataMethod { get set } -
Actual parameters for ths method application.
Declaration
Swift
public final var parameters: ParameterList { get set }