View Latest Version View on GitHub
View Latest Version | View on GitHub

FluxBase

Provides core types and functionality to implement applications using Flux architecture with .NET.

FluxBase / Store / Handle(ActionData) Method

Handles the provided actionData.

This is a protected virtual method.

protected virtual void Handle(ActionData actionData)

Parameters

Remarks

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.

See Also