Skip to main content

method_missing

Method of DynamicObject.

Overloads

NameDescription
method_missing(const string method_name) -> const ObjectHandles missing method calls on the dynamic object.
method_missing(const string method_name) -> ObjectHandles missing method calls on the dynamic object.

method_missing(const string method_name) -> const Object

Handles missing method calls on the dynamic object.

Parameters

  • method_name: The name of the missing method.

method_missing(const string method_name) -> Object

Handles missing method calls on the dynamic object.

Parameters

  • method_name: The name of the missing method.