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 functions and actionn defined within an entity model, as opposed to QueryFunction
which is used to represent calls to builtin functions.
-
Metadata for the function or action.
Declaration
Swift
final public var method: DataMethod!
-
Actual parameters for ths method application.
Declaration
Swift
final public var parameters: ParameterList!
-
Default initializer.
Declaration
Swift
override public init()
-
Declaration
Swift
open class func apply(method: DataMethod, parameters: ParameterList) -> DataMethodCall
Parameters
method
Value for
method
.parameters
Value for
parameters
.Return Value
A new function application.