Struct ConnectionReceivingMessageFailedEvent
Occurs when a message was unable to be received.
public struct ConnectionReceivingMessageFailedEvent
- Inherited Members
Constructors
ConnectionReceivingMessageFailedEvent(ConnectionId, int, Exception, long?)
Initializes a new instance of the ConnectionReceivingMessageFailedEvent struct.
public ConnectionReceivingMessageFailedEvent(ConnectionId connectionId, int responseTo, Exception exception, long? operationId)
Parameters
connectionId
ConnectionIdThe connection identifier.
responseTo
intThe id of the message we were receiving a response to.
exception
ExceptionThe exception.
operationId
long?The operation identifier.
Properties
ClusterId
Gets the cluster identifier.
public ClusterId ClusterId { get; }
Property Value
ConnectionId
Gets the connection identifier.
public ConnectionId ConnectionId { get; }
Property Value
Exception
Gets the exception.
public Exception Exception { get; }
Property Value
OperationId
Gets the operation identifier.
public long? OperationId { get; }
Property Value
- long?
ResponseTo
Gets id of the message we were receiving a response to.
public int ResponseTo { get; }
Property Value
ServerId
Gets the server identifier.
public ServerId ServerId { get; }
Property Value
Timestamp
Gets the timestamp.
public DateTime Timestamp { get; }