method_missing
Method of DynamicObject.
Overloads
| Name | Description |
|---|---|
method_missing(const string method_name) -> const Object | Handles missing method calls on the dynamic object. |
method_missing(const string method_name) -> Object | Handles 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.