Page events
Page event definitions are managed by the Sitecore.Marketing.Definitions.PageEvents.PageEventDefinitionManager class.
Page events are specialized events. IPageEventDefinition inherits IEventDefinition.
Accessing the PageEventDefinitionManager
The PageEventDefinitionManager is available from the Sitecore DI container. It is preferable to include a parameter of type DefinitionManagerBase<IPageEventDefinition, PageEventDefinitionRecord> in the constructor of your class and pull your class from the container, allowing the container to resolve the instance for you:
If you cannot use the container to construct your class, you can use the service locator. This class is also available in the Sitecore DI container:
Defining a page event
A page event is defined using types from the Sitecore.Marketing.Definitions.PageEvents.Model namespace.
Live events
The IsLiveEvent property is part of the base EventDefinition class and is used by Marketing Automation to determine if an event should be processed immediately rather than on session end. Read more about live event processing.
Saving a page event
Once you have defined a page event you may save it by calling the SaveAsync() method on the definition manager.
You can also optionally activate the page event during save by passing true to the second parameter of the SaveAsync() method:
Activating a page event
Page events must be activated before they are available for use outside of management. Page events can be activated when they’re saved by passing true to the activate (second) parameter of the SaveAsync() method:
Page events can also be activated without calling save, using the ActivateAsync() method:
The ActivateAsync() method takes the ID of the page event and does not require the page event definition model.
Deleting a page event
To delete a page event, use the Delete() method on the manager. Individual cultures cannot be deleted from the definition, only the entire definition. The culture provided to the method call should be either null (default value) or CultureInfo.InvariantCulture.
Retrieve a page event
You can retrieve a single page event by its ID using one of the Get() methods on the manager.
Retrieve a contact list by its alias
You can also retrieve a page event by its alias:
Update an existing page event
To update an existing page event definition, retrieve the page event by ID, edit the page event
Retrieving all page events
The GetAll() method can be used to get all page events from the manager. As there may be a large number of definitions, this method supports paging. The return value is a single page of results.
To access the results, use the DataPage property of the result.
The result also includes properties to expose the total number of definitions and the current page index and page size.