Events
This section provides you with an overview of the Events Module API in Sitefinity and guides you through the common tasks when working with events.
The Events module allows users to create and manage events.
Sitefinity back-end provides you with a user-friendly interface to create events. You can also create events programmatically using the Native or Fluent APIs.
The section contains the following:
-
Creating events
Describes how to create an event using Native or Fluent API.
-
Querying events
Describes how to query for an event based on its Id using Native or Fluent API.
-
Finding events
Describes how to search for a specific event using Native or Fluent API.
-
Modifying events
Describes how to modify an event using Native or Fluent API.
-
Deleting events
Describes how to delete an event using Native or Fluent API.
To manage events through Events Native API, you must add the following namespaces to your class:
using Telerik.Sitefinity.Events.Model;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Modules.Events;
using Telerik.Sitefinity.Workflow;
To manage events through Events Fluent API, you must add the following namespaces to your class:
using Telerik.Sitefinity;
using Telerik.Sitefinity.Events.Model;
using Telerik.Sitefinity.GenericContent.Model;
using Telerik.Sitefinity.Workflow;