Handles the provided actionData.
This is a protected virtual method.
protected virtual void Handle(ActionData actionData)
The default implementation maps all public methods that return void and have one parameter that is an ActionData or a subtype of ActionData and calls the method whose parameter is closest to the actual type of the provided actionData.
If a method where the actual type of the actionData matches exactly then that method is called, otherwise the method with the most sepcific base class (i.e.: the closest base type in the inheritance chain) is called if one can be found.