Speed up widget development with Sitefinity MCP server. Learn more...

Scheduling API

Overview

The scheduling system in Sitefinity allows you to schedule the execution of your custom logic at a specific time. It allows the user to set and track the progress of the scheduled tasks. The system automatically handles the NLB case, and the code is executed only on one node.

Create a scheduled task class

  1. Create a class that inherits from Telerik.Sitefinity.Scheduling.ScheduledTask.
  2. Create default constructor.
  3. Override the ExecuteTask method.
  4. To return the full name of your class, override the TaskName.
  5. To set a custom data and use it when the task is executed, override the GetCustomData and SetCustomData methods.
    • GetCustomData – in this method you return your custom data as a string and that string is stored in the database when the task is persisted.
    • SetCustomData – the custom data is retrieved from the database when the task is executed and you can use it to populate the required properties of your class.

EXAMPLE: Use the following code:

NEW TO SITEFINITY?

Want to learn more?

Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.

Get started with Integration Hub | Sitefinity Cloud

This free lesson teaches administrators, marketers, and other business professionals how to use the Integration hub service to create automated workflows between Sitefinity and other business systems.

Web Security for Sitefinity Administrators

This free lesson teaches administrators the basics about protecting your Sitefinity instance and its sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.

Foundations of Sitefinity ASP.NET Core Development

The free on-demand video course teaches developers how to use Sitefinity ASP.NET Core and take advantage of its decoupled architecture and modern development model.

Was this article helpful?