AckOut Event

Fires immediately before sending an acknowledgement to a client.

Syntax

public event OnAckOutHandler OnAckOut;

public delegate void OnAckOutHandler(object sender, MllpserverAckOutEventArgs e);

public class MllpserverAckOutEventArgs : EventArgs {
  public string ConnectionId { get; }
  public bool Accept { get; set; }
}
Public Event OnAckOut As OnAckOutHandler

Public Delegate Sub OnAckOutHandler(sender As Object, e As MllpserverAckOutEventArgs)

Public Class MllpserverAckOutEventArgs Inherits EventArgs
  Public ReadOnly Property ConnectionId As String
  Public Property Accept As Boolean
End Class

Remarks

This event fires immediately before the component sends an acknowledgement to an MLLP client.

ConnectionId is the Id of the connection that will receive the acknowledgement.

The Accept parameter should be set to indicate whether the component should send a positive (ACK - True) or negative (NAK - False) acknowledgement. The default is True.

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