AckIn Event

Fires immediately after receiving an acknowledgement from the server.

Syntax

public event OnAckInHandler OnAckIn;

public delegate void OnAckInHandler(object sender, MllpclientAckInEventArgs e);

public class MllpclientAckInEventArgs : EventArgs {
  public bool Accepted { get; }
}
Public Event OnAckIn As OnAckInHandler

Public Delegate Sub OnAckInHandler(sender As Object, e As MllpclientAckInEventArgs)

Public Class MllpclientAckInEventArgs Inherits EventArgs
  Public ReadOnly Property Accepted As Boolean
End Class

Remarks

This event fires immediately after receiving an acknowledgement (positive or negative) from the MLLP server.

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.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 .NET Edition - Version 20.0 [Build 8203]