EDI Integrator 2016 .NET Edition
EDI Integrator 2016 .NET Edition
Questions / Feedback?

AckOut Event

Fires immediately before sending an acknowledgement to a client.

Syntax

[VB.NET]
Public Event OnAckOut As OnAckOutHandler
[C#]
public event OnAckOutHandler OnAckOut;

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

class MllpserverAckOutEventArgs : EventArgs {
  string ConnectionId {get;}
  bool Accept {get; set;}
}

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) 2020 /n software inc. - All rights reserved.
EDI Integrator 2016 .NET Edition - Version 16.0 [Build 7362]