EDIDataInfo Event
Fired when processing an incoming message.
Syntax
public event OnEDIDataInfoHandler OnEDIDataInfo; public delegate void OnEDIDataInfoHandler(object sender, As2receiverEDIDataInfoEventArgs e); public class As2receiverEDIDataInfoEventArgs : EventArgs { public string Name { get; } public string DataType { get; } public bool Duplicate { get; set; } }
Public Event OnEDIDataInfo As OnEDIDataInfoHandler Public Delegate Sub OnEDIDataInfoHandler(sender As Object, e As As2receiverEDIDataInfoEventArgs) Public Class As2receiverEDIDataInfoEventArgs Inherits EventArgs Public ReadOnly Property Name As String Public ReadOnly Property DataType As String Public Property Duplicate As Boolean End Class
Remarks
When ParseRequest or ProcessRequest has been called this event will fire and provide the filename of the incoming data via the Name parameter. DataType will be the EDI type specified in the message, such as "application/edi-x12".
Duplicate is used in conjunction with the InvalidFilenameMDNAction configuration setting when Filename Preservation with an Associated MDN Response is implemented in the receiving agent to support MDN responses for duplicate filenames. If IncomingDirectory is specified, the Duplicate parameter will return True if the filename specified in the request exists on disk. Additionally, the Duplicate parameter may be set to True before the event exits so that checking for duplicate filenames may be extended to the application logic.