The background task plugin provides interfaces to define custom background task handlers, handler configurations based on the background task settings, and to allow handlers to access other services.
IBackgroundTaskHandler Implement IBackgroundTaskHandler interface to create a custom .Net background task handler.
IBackgroundTaskHandlerConfiguration IBackgroundTaskHandlerConfiguration interface is implemented by the object passed to .Net handler Initialize method. It provides a handler with the parameters configured in the XML Background Task Settings.
IBackgroundTaskHandlerContext IBackgroundTaskHandlerContext interface is implemented by the object passed to .Net handler Run method. It provides the handler with the context information, input data and an access to the various services (such as logging service).