EndTransaction Event
Fires whenever a control segment is read that marks the end of a transaction.
Syntax
public event OnEndTransactionHandler OnEndTransaction; public delegate void OnEndTransactionHandler(object sender, Hl7readerEndTransactionEventArgs e); public class Hl7readerEndTransactionEventArgs : EventArgs { public string Tag { get; } public string ControlNumber { get; } public int Count { get; } public string FullSegment { get; } }
Public Event OnEndTransaction As OnEndTransactionHandler Public Delegate Sub OnEndTransactionHandler(sender As Object, e As Hl7readerEndTransactionEventArgs) Public Class Hl7readerEndTransactionEventArgs Inherits EventArgs Public ReadOnly Property Tag As String Public ReadOnly Property ControlNumber As String Public ReadOnly Property Count As Integer Public ReadOnly Property FullSegment As String End Class
Remarks
The EndTransaction event will fire when a control segment marking the end of a transaction is read. The Tag parameter contains the tag of the segment, such as SE. ControlNumber contains the control number associated with the segment, and links this event with the corresponding StartTransaction event. Count contains the value of the count element included in the closing segment, which identifies the number of segments in a transaction set.