SaaS CMS has officially launched! Learn more now.

Class EventNotificationEventArgs

Argument used when receiving/raising remote events

Inheritance
System.Object
EventNotificationEventArgs
Namespace: EPiServer.Events
Assembly: EPiServer.Events.dll
Version: 12.0.3
Syntax
public class EventNotificationEventArgs : EventArgs

Constructors

EventNotificationEventArgs(Guid, Guid, Object)

Creates a new instance of EventNotificationEventArgs

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

Properties

EventId

The id of the event

Declaration
public Guid EventId { get; }
Property Value
Type Description
System.Guid

Param

The data related to the event

Declaration
public object Param { get; set; }
Property Value
Type Description
System.Object

RaiserId

The id for the component that raised the event

Declaration
public Guid RaiserId { get; }
Property Value
Type Description
System.Guid

Extension Methods