Accessor Providers
This section is reserved for experienced developers
Accessor providers are reserved for more experienced users but offer greater flexibility when extending the system. They provide a way to supply custom values and paths for bindings.
By default the system will use highly optimized reflection and methods generation to provide binding paths and values. There is, however, another way to provide bindings: IAccessorProvider
. All classes implementing this interface will be automatically registered by the system and offered to users as alternative binding methods.
Here is a sample implementation of IAccessorProvider
interface:
The system will automatically register this new provider and here is what the user will be able to do:
Last updated