Umbraco uses reflection to examine all assemblies in the /bin folder to see whether they have a class that inherits from ApplicationBase. So, so long as your class does this, and your events are marked public, they should just work automatically when deployed.
Umbraco Event Handlers
Hi
I have created a DocumentIndexer class which extends ApplicationBase and I provide a mechanism to index a doucment after its save.
How can I tell umbraco to consider this class? Should I add something in config file?
Regards
That isn't needed, by deploying the dll's it should work.
Umbraco uses reflection to examine all assemblies in the /bin folder to see whether they have a class that inherits from ApplicationBase. So, so long as your class does this, and your events are marked public, they should just work automatically when deployed.
is working on a reply...