Class EventReceivedEventArgs
Holds event data about remote event that was received.
Inheritance
Namespace: EPiServer.Events.Providers
Assembly: EPiServer.Events.dll
Version: 12.0.3Syntax
public class EventReceivedEventArgs : EventArgs
Constructors
EventReceivedEventArgs(Guid, Guid, String, String, Nullable<DateTime>, Object)
Initializes a new instance of the Event
Declaration
public EventReceivedEventArgs(Guid raiserId, Guid eventId, string serverName, string applicationName, Nullable<DateTime> sent, object param)
Parameters
Type | Name | Description |
---|---|---|
System. |
raiserId | The identity of the part that raised this event. |
System. |
eventId | The event identity. |
System. |
serverName | Name of the server where this event was raised. |
System. |
applicationName | Name of the application where this event was raised. |
System. |
sent | the date and time when the event was raised on the remote server. |
System. |
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. |
EventId
Gets the identity of the current event.
Declaration
public Guid EventId { get; }
Property Value
Type | Description |
---|---|
System. |
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. |
RaiserId
Gets the id of the part that raised this event.
Declaration
public Guid RaiserId { get; }
Property Value
Type | Description |
---|---|
System. |
Sent
Gets the date and time when the event was raised at the remote server.
Declaration
public Nullable<DateTime> Sent { get; }
Property Value
Type | Description |
---|---|
System. |
ServerName
Gets the name of the server where this event was raised.
Declaration
public string ServerName { get; }
Property Value
Type | Description |
---|---|
System. |