London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!

Interface ICategoryEvents

Service that will raise events when a Category is changed.

Namespace: EPiServer.DataAbstraction
Assembly: EPiServer.dll
Version: 11.20.7
Syntax
public interface ICategoryEvents

Events

CategoryCreated

Occurs when a new Category is added.

Declaration
event EventHandler<CategoryEventArgs> CategoryCreated
Event Type
Type Description
System.EventHandler<CategoryEventArgs>

CategoryDeleted

Occurs when an existing Category is deleted.

Declaration
event EventHandler<CategoryEventArgs> CategoryDeleted
Event Type
Type Description
System.EventHandler<CategoryEventArgs>

CategoryUpdated

Occurs when an existing Category is updated.

Declaration
event EventHandler<CategoryEventArgs> CategoryUpdated
Event Type
Type Description
System.EventHandler<CategoryEventArgs>

Extension Methods