Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.

 

Interface IEventHandler

Defines the interface that classes should implement to receive events from the event service via the EventServiceClient. The Event class should be used to by user code receive events under normal circumstances. Only implement a class based on this interface and use it directly with the EventServiceClient for specialized behaviour.

Namespace: EPiServer.Events.Clients
Assembly: EPiServer.Events.dll
Version: 7.19.2
Syntax
[Obsolete("The IEventHandler interface is no longer in use, if you want to listen to remote events subscribe to the EventReceived on the IEventBroker.", true)]
public interface IEventHandler

Methods

Missed(Guid)

Declaration
void Missed(Guid eventId)
Parameters
Type Name Description
System.Guid eventId

Raised(Guid, Guid, Object)

Declaration
void Raised(Guid raiserId, Guid eventId, object param)
Parameters
Type Name Description
System.Guid raiserId
System.Guid eventId
System.Object param

Extension Methods