Class EventNotificationEventArgs
Argument used when receiving/raising remote events
Inheritance
System.Object
EventNotificationEventArgs
Namespace: EPiServer.Events
Assembly: EPiServer.Events.dll
Version: 12.0.3Syntax
public class EventNotificationEventArgs : EventArgs
Constructors
EventNotificationEventArgs(Guid, Guid, Object)
Creates a new instance of Event
Declaration
public EventNotificationEventArgs(Guid raiserId, Guid eventId, object param)
Parameters
Type | Name | Description |
---|---|---|
System. |
raiserId | |
System. |
eventId | |
System. |
param |
Properties
EventId
The id of the event
Declaration
public Guid EventId { get; }
Property Value
Type | Description |
---|---|
System. |
Param
The data related to the event
Declaration
public object Param { get; set; }
Property Value
Type | Description |
---|---|
System. |
RaiserId
The id for the component that raised the event
Declaration
public Guid RaiserId { get; }
Property Value
Type | Description |
---|---|
System. |