Class EventReceivedEventArgs
Holds event data about remote event that was received.
Inheritance
Inherited Members
Namespace: EPiServer.Events.Providers
Assembly: EPiServer.Events.dll
Version: 9.12.2Syntax
public class EventReceivedEventArgs : EventArgs
Constructors
EventReceivedEventArgs(Guid, Guid, String, String, Nullable<DateTime>, Object)
Initializes a new instance of the EventNotificationEventArgs class.
Declaration
public EventReceivedEventArgs(Guid raiserId, Guid eventId, string serverName, string applicationName, DateTime? sent, object param)
Parameters
Type | Name | Description |
---|---|---|
System.Guid | raiserId | The identity of the part that raised this event. |
System.Guid | eventId | The event identity. |
System.String | serverName | Name of the server where this event was raised. |
System.String | applicationName | Name of the application where this event was raised. |
System.Nullable<System.DateTime> | sent | the date and time when the event was raised on the remote server. |
System.Object | param | The data parameter that is sent with this event. |
Properties
ApplicationName
Gets the name of the IIS application where this event was raised.
Declaration
public string ApplicationName { get; }
Property Value
Type | Description |
---|---|
System.String |
EventId
Gets the identity of the current event.
Declaration
public Guid EventId { get; }
Property Value
Type | Description |
---|---|
System.Guid |
Param
Gets or sets the data parameter that should be sent with this event.
Declaration
public object Param { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
RaiserId
Gets the id of the part that raised this event.
Declaration
public Guid RaiserId { get; }
Property Value
Type | Description |
---|---|
System.Guid |
Sent
Gets the date and time when the event was raised at the remote server.
Declaration
public DateTime? Sent { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |
ServerName
Gets the name of the server where this event was raised.
Declaration
public string ServerName { get; }
Property Value
Type | Description |
---|---|
System.String |