AckIn Event
Fires immediately after receiving an acknowledgement from a client.
Syntax
public event OnAckInHandler OnAckIn; public delegate void OnAckInHandler(object sender, MllpserverAckInEventArgs e); public class MllpserverAckInEventArgs : EventArgs { public string ConnectionId { get; } public bool Accepted { get; } }
Public Event OnAckIn As OnAckInHandler Public Delegate Sub OnAckInHandler(sender As Object, e As MllpserverAckInEventArgs) Public Class MllpserverAckInEventArgs Inherits EventArgs Public ReadOnly Property ConnectionId As String Public ReadOnly Property Accepted As Boolean End Class
Remarks
This event fires immediately after receiving an acknowledgement (positive or negative) from an MLLP client.
The ConnectionId parameter reflects the Id of the connection that the acknowledgement was received on.
The Accepted parameter reflects whether the acknowledgement is positive (ACK - True) or negative (NAK - False).
Anytime a negative acknowledgement is received, the component will report an error with code 670.